add icons for Character groups
This commit is contained in:
commit
2d9a41a5fe
3461 changed files with 594457 additions and 0 deletions
55
www/analytics/plugins/ExampleUI/ExampleUI.php
Normal file
55
www/analytics/plugins/ExampleUI/ExampleUI.php
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
<?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\ExampleUI;
|
||||
use Piwik\Menu\MenuMain;
|
||||
use Piwik\Menu\MenuTop;
|
||||
|
||||
/**
|
||||
*/
|
||||
class ExampleUI extends \Piwik\Plugin
|
||||
{
|
||||
/**
|
||||
* @see Piwik\Plugin::getListHooksRegistered
|
||||
*/
|
||||
public function getListHooksRegistered()
|
||||
{
|
||||
return array(
|
||||
'Menu.Reporting.addItems' => 'addReportingMenuItems',
|
||||
'Menu.Top.addItems' => 'addTopMenuItems',
|
||||
);
|
||||
}
|
||||
|
||||
function addReportingMenuItems()
|
||||
{
|
||||
MenuMain::getInstance()->add('UI Framework', '', array('module' => 'ExampleUI', 'action' => 'dataTables'), true, 30);
|
||||
|
||||
$this->addSubMenu('Data tables', 'dataTables', 1);
|
||||
$this->addSubMenu('Bar graph', 'barGraph', 2);
|
||||
$this->addSubMenu('Pie graph', 'pieGraph', 3);
|
||||
$this->addSubMenu('Tag clouds', 'tagClouds', 4);
|
||||
$this->addSubMenu('Sparklines', 'sparklines', 5);
|
||||
$this->addSubMenu('Evolution Graph', 'evolutionGraph', 6);
|
||||
|
||||
if (\Piwik\Plugin\Manager::getInstance()->isPluginActivated('TreemapVisualization')) {
|
||||
$this->addSubMenu('Treemap', 'treemap', 7);
|
||||
}
|
||||
}
|
||||
|
||||
function addTopMenuItems()
|
||||
{
|
||||
$urlParams = array('module' => 'ExampleUI', 'action' => 'notifications');
|
||||
MenuTop::getInstance()->addEntry('UI Notifications', $urlParams, $displayedForCurrentUser = true, $order = 3);
|
||||
}
|
||||
|
||||
private function addSubMenu($subMenu, $action, $order)
|
||||
{
|
||||
MenuMain::getInstance()->add('UI Framework', $subMenu, array('module' => 'ExampleUI', 'action' => $action), true, $order);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue