36 lines
734 B
PHP
36 lines
734 B
PHP
<?php
|
|
/**
|
|
* Piwik - Open source web analytics
|
|
*
|
|
* @link http://piwik.org
|
|
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
|
*
|
|
*/
|
|
namespace Piwik\Plugins\CustomVariables;
|
|
|
|
use Piwik\Piwik;
|
|
use Piwik\View;
|
|
use Piwik\ViewDataTable\Factory;
|
|
|
|
/**
|
|
*/
|
|
class Controller extends \Piwik\Plugin\Controller
|
|
{
|
|
public function index()
|
|
{
|
|
return View::singleReport(
|
|
Piwik::translate('CustomVariables_CustomVariables'),
|
|
$this->getCustomVariables(true));
|
|
}
|
|
|
|
public function getCustomVariables()
|
|
{
|
|
return $this->renderReport(__FUNCTION__);
|
|
}
|
|
|
|
public function getCustomVariablesValuesFromNameId()
|
|
{
|
|
return $this->renderReport(__FUNCTION__);
|
|
}
|
|
}
|
|
|