_welcome(); if (isset($this->params['datasource'])) { $this->dataSource = $this->params['datasource']; } if ($this->command && !in_array($this->command, array('help'))) { if (!config('database')) { $this->out(__('Your database configuration was not found. Take a moment to create one.', true), true); return $this->DbConfig->execute(); } } } /** * Override main() for help message hook * * @access public */ function main() { $this->out(__('I18n Shell', true)); $this->hr(); $this->out(__('[E]xtract POT file from sources', true)); $this->out(__('[I]nitialize i18n database table', true)); $this->out(__('[H]elp', true)); $this->out(__('[Q]uit', true)); $choice = strtolower($this->in(__('What would you like to do?', true), array('E', 'I', 'H', 'Q'))); switch ($choice) { case 'e': $this->Extract->execute(); break; case 'i': $this->initdb(); break; case 'h': $this->help(); break; case 'q': exit(0); break; default: $this->out(__('You have made an invalid selection. Please choose a command to execute by entering E, I, H, or Q.', true)); } $this->hr(); $this->main(); } /** * Initialize I18N database. * * @access public */ function initdb() { $this->Dispatch->args = array('schema', 'create', 'i18n'); $this->Dispatch->dispatch(); } /** * Show help screen. * * @access public */ function help() { $this->hr(); $this->out(__('I18n Shell:', true)); $this->hr(); $this->out(__('I18n Shell initializes i18n database table for your application', true)); $this->out(__('and generates .pot file(s) with translations.', true)); $this->hr(); $this->out(__('usage:', true)); $this->out(' cake i18n help'); $this->out(' cake i18n initdb [-datasource custom]'); $this->out(); $this->hr(); $this->Extract->help(); } }