Exemplo n.º 1
0
 /**
  * Displays a header for the shell
  *
  * @access protected
  */
 function _welcome()
 {
     $this->Dispatch->clear();
     $this->out("\nWelcome to CakePHP v" . Configure::version() . " Console");
     $this->out("---------------------------------------------------------------");
     $this->out('App : ' . $this->params['app']);
     $this->out('Path: ' . $this->params['working']);
     $this->hr();
 }
Exemplo n.º 2
0
 /**
  * Displays a header for the shell
  *
  * @access protected
  */
 protected function _welcome()
 {
     $this->Dispatch->clear();
     $this->out();
     $this->out('Welcome to CakePHP v' . Configure::version() . ' Console');
     $this->hr();
     $this->out('App : ' . $this->params['app']);
     $this->out('Path: ' . $this->params['working']);
     $this->hr();
 }