/** * 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(); }
/** * 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(); }