PDF rausgenommen
This commit is contained in:
26
msd2/tracking/piwik/plugins/Feedback/Controller.php
Normal file
26
msd2/tracking/piwik/plugins/Feedback/Controller.php
Normal file
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
/**
|
||||
* Piwik - free/libre analytics platform
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
*
|
||||
*/
|
||||
namespace Piwik\Plugins\Feedback;
|
||||
|
||||
use Piwik\Version;
|
||||
use Piwik\View;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
class Controller extends \Piwik\Plugin\Controller
|
||||
{
|
||||
function index()
|
||||
{
|
||||
$view = new View('@Feedback/index');
|
||||
$this->setGeneralVariablesView($view);
|
||||
$view->piwikVersion = Version::VERSION;
|
||||
return $view->render();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user