예제 #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();
 }
예제 #2
0
파일: shell.php 프로젝트: evrard/cakephp2x
 /**
  * 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();
 }