/**
  * @param BuildMenuEvent $event
  */
 public function onMenuQuotation(BuildMenuEvent $event)
 {
     $menu = $event->getMenu();
     /*$menu->addChild(
           'Quotations',
           array(
               'route' => 'jumph_quotation_overview',
               'extras' => array(
                   'icon' => 'fa-usd fa-fw',
                   'weight' => 30
               )
           )
       );*/
 }
Ejemplo n.º 2
0
 /**
  * @param BuildMenuEvent $event
  */
 public function onMenuIssue(BuildMenuEvent $event)
 {
     $menu = $event->getMenu();
     $menu->addChild('Issue tracker', array('route' => 'jumph_issue_overview', 'extras' => array('icon' => 'fa-bug fa-fw', 'weight' => 40)));
 }
Ejemplo n.º 3
0
 /**
  * @param BuildMenuEvent $event
  */
 public function onMenuUser(BuildMenuEvent $event)
 {
     $menu = $event->getMenu();
     $menu->addChild('Users', array('route' => 'jumph_user_overview', 'extras' => array('icon' => 'fa-users fa-fw', 'weight' => 110)));
 }
Ejemplo n.º 4
0
 /**
  * @param BuildMenuEvent $event
  */
 public function onMenuTime(BuildMenuEvent $event)
 {
     $menu = $event->getMenu();
     $menu->addChild('Time tracker', array('route' => 'jumph_time_overview', 'extras' => array('icon' => 'fa-clock-o fa-fw', 'weight' => 50)));
 }
Ejemplo n.º 5
0
 /**
  * @param BuildMenuEvent $event
  */
 public function onMenuDashboard(BuildMenuEvent $event)
 {
     $menu = $event->getMenu();
     $menu->addChild('Dashboard', array('route' => 'jumph_dashboard_overview', 'extras' => array('icon' => 'fa-dashboard fa-fw', 'weight' => 0)));
 }
Ejemplo n.º 6
0
 /**
  * @param BuildMenuEvent $event
  */
 public function onMenuProject(BuildMenuEvent $event)
 {
     $menu = $event->getMenu();
     $menu->addChild('Projects', array('route' => 'jumph_project_overview', 'extras' => array('icon' => 'fa-tasks fa-fw', 'weight' => 20)));
 }
Ejemplo n.º 7
0
 /**
  * @param BuildMenuEvent $event
  */
 public function onMenuClient(BuildMenuEvent $event)
 {
     $menu = $event->getMenu();
     $menu->addChild('Clients', array('route' => 'jumph_company_overview', 'extras' => array('icon' => 'fa-building fa-fw', 'weight' => 100)));
 }
Ejemplo n.º 8
0
 /**
  * @param BuildMenuEvent $event
  */
 public function onConfigMenuTime(BuildMenuEvent $event)
 {
     $menu = $event->getMenu();
     $menu->addChild('Time tracker category', array('route' => 'jumph_config_time_category_overview', 'extras' => array('icon' => 'fa-cogs fa-fw', 'weight' => 40)));
 }
Ejemplo n.º 9
0
 /**
  * @param BuildMenuEvent $event
  */
 public function onConfigMenuProject(BuildMenuEvent $event)
 {
     $menu = $event->getMenu();
     $menu->addChild('Project status', array('route' => 'jumph_config_project_status_overview', 'extras' => array('icon' => 'fa-cogs fa-fw', 'weight' => 10)));
 }
Ejemplo n.º 10
0
 /**
  * @param BuildMenuEvent $event
  */
 public function onMenuCalendar(BuildMenuEvent $event)
 {
     $menu = $event->getMenu();
     $menu->addChild('Calendar', array('route' => 'jumph_calendar_overview', 'extras' => array('icon' => 'fa-calendar fa-fw', 'weight' => 80)));
 }
Ejemplo n.º 11
0
 /**
  * @param BuildMenuEvent $event
  */
 public function onMenuEmail(BuildMenuEvent $event)
 {
     $menu = $event->getMenu();
     $menu->addChild('Emails', array('route' => 'jumph_email_overview', 'extras' => array('icon' => 'fa-envelope fa-fw', 'weight' => 60)));
 }