Skip to content
Extraits de code Groupes Projets
Controller.php 1,78 ko
Newer Older
  • Learn to ignore specific revisions
  • <?php
    /**
     * Piwik - Open source web analytics
    
     * @link http://piwik.org
     * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
    
     * @category Piwik_Plugins
     * @package Piwik_CustomVariables
     */
    
    /**
     *
     * @package Piwik_CustomVariables
     */
    
    class Piwik_CustomVariables_Controller extends Piwik_Controller
    {
    	
    	function index($fetch = false)
    	{
    		return Piwik_View::singleReport(
    				Piwik_Translate('CustomVariables_CustomVariables'),
    				$this->getCustomVariables(true), $fetch);
    	}
    	
    
    	function getCustomVariables($fetch = false)
    
    	{
    		$view = Piwik_ViewDataTable::factory();
    		$view->init( $this->pluginName,  __FUNCTION__, "CustomVariables.getCustomVariables", "getCustomVariablesValuesFromNameId" );
    	
    		$this->setPeriodVariablesView($view);
    		$view->enableShowGoals();
    		
    
    mattpiwik's avatar
    mattpiwik a validé
    		$view->setColumnsToDisplay( array('label','nb_visits', 'nb_actions') );
    
    		$view->setColumnTranslation('label', Piwik_Translate('CustomVariables_ColumnCustomVariableName'));
    		$view->setSortedColumn( 'nb_visits'	 );
    
    		$view->setLimit( 10 );
    
    		$view->setFooterMessage( Piwik_Translate('CustomVariables_TrackingHelp', array('<a target="_blank" href="http://piwik.org/docs/custom-variables/">', '</a>')) );
    
    		$this->setMetricsVariablesView($view);
    
    		return $this->renderView($view, $fetch);
    	}
    
    	function getCustomVariablesValuesFromNameId( $fetch = false)
    	{
    		$view = Piwik_ViewDataTable::factory();
    		$view->init( $this->pluginName, __FUNCTION__, 'CustomVariables.getCustomVariablesValuesFromNameId' );
    
    		$view->disableSearchBox();
    
    mattpiwik's avatar
    mattpiwik a validé
    		$view->enableShowGoals();
    
    		$view->disableExcludeLowPopulation();
    
    mattpiwik's avatar
    mattpiwik a validé
    		$view->setColumnsToDisplay( array('label','nb_visits', 'nb_actions') );
    
    		$view->setColumnTranslation('label', Piwik_Translate('CustomVariables_ColumnCustomVariableValue'));
    
    		return $this->renderView($view, $fetch);
    	}
    	
    }