/**
  * Before filter callback: loads the plugin configuration parameters
  * 
  * @access public
  */
 function beforeFilter()
 {
     Configure::load('Dashboard.dash');
     parent::beforeFilter();
 }
 public function beforeFilter()
 {
     parent::beforeFilter();
     $this->Auth->allow('service_get');
     $this->ClasseService = new ClasseService();
 }
 public function beforeFilter()
 {
     parent::beforeFilter();
     $this->Auth->allow('service_coverage', 'service_transitions');
     $this->EstatisticaService = new EstatisticaService();
 }
 public function beforeFilter()
 {
     parent::beforeFilter();
     $this->Auth->allow('service_get');
     $this->TerritorioService = new TerritorioService();
 }