Esempio n. 1
0
 /**
  * Triggers the AdminMenu.add hook and returns the menu.
  *
  * @return Array
  */
 public function get()
 {
     if (!$this->menu) {
         Piwik_PostEvent('AdminMenu.add');
     }
     return parent::get();
 }
Esempio n. 2
0
 /**
  * Triggers the Menu.add hook and returns the menu.
  *
  * @return Array
  */
 public function get()
 {
     // We trigger the Event only once!
     if (!$this->menu) {
         Piwik_PostEvent('Menu.add');
     }
     return parent::get();
 }