vendor/novosga/monitor-bundle/NovosgaMonitorBundle.php line 16

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Novo SGA project.
  4.  *
  5.  * (c) Rogerio Lino <rogeriolino@gmail.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Novosga\MonitorBundle;
  11. use Novosga\Module\BaseModule;
  12. class NovosgaMonitorBundle extends BaseModule
  13. {
  14.     public function getIconName()
  15.     {
  16.         return 'desktop';
  17.     }
  18.     public function getDisplayName()
  19.     {
  20.         return 'module.name';
  21.     }
  22.     public function getHomeRoute()
  23.     {
  24.         return 'novosga_monitor_index';
  25.     }
  26. }