Piwik\Plugins\UserLanguage\Reports\Base::init PHP 메소드

init() 보호된 메소드

protected init ( )
    protected function init()
    {
        $this->categoryId = 'General_Visitors';
        $this->subcategoryId = 'UserCountry_SubmenuLocations';
    }

Usage Example

예제 #1
0
파일: GetLanguage.php 프로젝트: piwik/piwik
 protected function init()
 {
     parent::init();
     $this->dimension = new Language();
     $this->name = Piwik::translate('UserLanguage_BrowserLanguage');
     $this->documentation = '';
     // TODO
     $this->order = 8;
 }
Base