CakePHP
  • Documentation
    • Book
    • API
    • Videos
    • Reporting Security Issues
    • Privacy Policy
    • Logos & Trademarks
  • Business Solutions
  • Swag
  • Road Trip
  • Team
  • Community
    • Community
    • Get Involved
    • Issues (GitHub)
    • Bakery
    • Featured Resources
    • Training
    • Meetups
    • My CakePHP
    • CakeFest
    • Newsletter
    • Linkedin
    • YouTube
    • Facebook
    • Twitter
    • Mastodon
    • Help & Support
    • Forum
    • Stack Overflow
    • Slack
    • Paid Support
CakePHP

C CakePHP 2.0 API

  • Overview
  • Tree
  • Deprecated
  • Version:
    • 2.0
      • 4.2
      • 4.1
      • 4.0
      • 3.9
      • 3.8
      • 3.7
      • 3.6
      • 3.5
      • 3.4
      • 3.3
      • 3.2
      • 3.1
      • 3.0
      • 2.10
      • 2.9
      • 2.8
      • 2.7
      • 2.6
      • 2.5
      • 2.4
      • 2.3
      • 2.2
      • 2.1
      • 2.0
      • 1.3
      • 1.2

Packages

  • Cake
    • Cache
      • Engine
    • Configure
    • Console
      • Command
        • Task
    • Controller
      • Component
        • Auth
    • Core
    • Error
    • I18n
    • Log
      • Engine
    • Model
      • Behavior
      • Datasource
        • Database
        • Session
    • Network
      • Email
      • Http
    • Routing
      • Route
    • TestSuite
      • Coverage
      • Fixture
      • Reporter
    • Utility
    • View
      • Helper

Classes

  • ConsoleErrorHandler
  • ConsoleInput
  • ConsoleInputArgument
  • ConsoleInputOption
  • ConsoleInputSubcommand
  • ConsoleOptionParser
  • ConsoleOutput
  • HelpFormatter
  • Shell
  • ShellDispatcher
  • TaskCollection
  1: <?php
  2: /**
  3:  * Base class for Shells
  4:  *
  5:  * PHP 5
  6:  *
  7:  * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
  8:  * Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
  9:  *
 10:  * Licensed under The MIT License
 11:  * Redistributions of files must retain the above copyright notice.
 12:  *
 13:  * @copyright     Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
 14:  * @link          http://cakephp.org CakePHP(tm) Project
 15:  * @since         CakePHP(tm) v 1.2.0.5012
 16:  * @license       MIT License (http://www.opensource.org/licenses/mit-license.php)
 17:  */
 18: 
 19: App::uses('TaskCollection', 'Console');
 20: App::uses('ConsoleOutput', 'Console');
 21: App::uses('ConsoleInput', 'Console');
 22: App::uses('ConsoleInputSubcommand', 'Console');
 23: App::uses('ConsoleOptionParser', 'Console');
 24: App::uses('File', 'Utility');
 25: 
 26: /**
 27:  * Base class for command-line utilities for automating programmer chores.
 28:  *
 29:  * @package       Cake.Console
 30:  */
 31: class Shell extends Object {
 32: 
 33: /**
 34:  * Output constants for making verbose and quiet shells.
 35:  */
 36:     const VERBOSE = 2;
 37:     const NORMAL = 1;
 38:     const QUIET = 0;
 39: 
 40: /**
 41:  * An instance of ConsoleOptionParser that has been configured for this class.
 42:  *
 43:  * @var ConsoleOptionParser
 44:  */
 45:     public $OptionParser;
 46: 
 47: /**
 48:  * If true, the script will ask for permission to perform actions.
 49:  *
 50:  * @var boolean
 51:  */
 52:     public $interactive = true;
 53: 
 54: /**
 55:  * Contains command switches parsed from the command line.
 56:  *
 57:  * @var array
 58:  */
 59:     public $params = array();
 60: 
 61: /**
 62:  * The command (method/task) that is being run.
 63:  *
 64:  * @var string
 65:  */
 66:     public $command;
 67: 
 68: /**
 69:  * Contains arguments parsed from the command line.
 70:  *
 71:  * @var array
 72:  */
 73:     public $args = array();
 74: 
 75: /**
 76:  * The name of the shell in camelized.
 77:  *
 78:  * @var string
 79:  */
 80:     public $name = null;
 81: 
 82: /**
 83:  * The name of the plugin the shell belongs to.
 84:  * Is automatically set by ShellDispatcher when a shell is constructed.
 85:  *
 86:  * @var string
 87:  */
 88:     public $plugin = null;
 89: 
 90: /**
 91:  * Contains tasks to load and instantiate
 92:  *
 93:  * @var array
 94:  * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::$tasks
 95:  */
 96:     public $tasks = array();
 97: 
 98: /**
 99:  * Contains the loaded tasks
100:  *
101:  * @var array
102:  */
103:     public $taskNames = array();
104: 
105: /**
106:  * Contains models to load and instantiate
107:  *
108:  * @var array
109:  * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::$uses
110:  */
111:     public $uses = array();
112: 
113: /**
114:  * Task Collection for the command, used to create Tasks.
115:  *
116:  * @var TaskCollection
117:  */
118:     public $Tasks;
119: 
120: /**
121:  * Normalized map of tasks.
122:  *
123:  * @var string
124:  */
125:     protected $_taskMap = array();
126: 
127: /**
128:  * stdout object.
129:  *
130:  * @var ConsoleOutput
131:  */
132:     public $stdout;
133: 
134: /**
135:  * stderr object.
136:  *
137:  * @var ConsoleOutput
138:  */
139:     public $stderr;
140: 
141: /**
142:  * stdin object
143:  *
144:  * @var ConsoleInput
145:  */
146:     public $stdin;
147: 
148: /**
149:  *  Constructs this Shell instance.
150:  *
151:  * @param ConsoleOutput $stdout A ConsoleOutput object for stdout.
152:  * @param ConsoleOutput $stderr A ConsoleOutput object for stderr.
153:  * @param ConsoleInput $stdin A ConsoleInput object for stdin.
154:  * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell
155:  */
156:     public function __construct($stdout = null, $stderr = null, $stdin = null) {
157:         if ($this->name == null) {
158:             $this->name = Inflector::camelize(str_replace(array('Shell', 'Task'), '', get_class($this)));
159:         }
160:         $this->Tasks = new TaskCollection($this);
161: 
162:         $this->stdout = $stdout;
163:         $this->stderr = $stderr;
164:         $this->stdin = $stdin;
165:         if ($this->stdout == null) {
166:             $this->stdout = new ConsoleOutput('php://stdout');
167:         }
168:         if ($this->stderr == null) {
169:             $this->stderr = new ConsoleOutput('php://stderr');
170:         }
171:         if ($this->stdin == null) {
172:             $this->stdin = new ConsoleInput('php://stdin');
173:         }
174: 
175:         $parent = get_parent_class($this);
176:         if ($this->tasks !== null && $this->tasks !== false) {
177:             $this->_mergeVars(array('tasks'), $parent, true);
178:         }
179:         if ($this->uses !== null && $this->uses !== false) {
180:             $this->_mergeVars(array('uses'), $parent, false);
181:         }
182:     }
183: 
184: /**
185:  * Initializes the Shell
186:  * acts as constructor for subclasses
187:  * allows configuration of tasks prior to shell execution
188:  *
189:  * @return void
190:  * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::initialize
191:  */
192:     public function initialize() {
193:         $this->_loadModels();
194:     }
195: 
196: /**
197:  * Starts up the Shell and displays the welcome message.
198:  * Allows for checking and configuring prior to command or main execution
199:  *
200:  * Override this method if you want to remove the welcome information,
201:  * or otherwise modify the pre-command flow.
202:  *
203:  * @return void
204:  * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::startup
205:  */
206:     public function startup() {
207:         $this->_welcome();
208:     }
209: 
210: /**
211:  * Displays a header for the shell
212:  *
213:  * @return void
214:  */
215:     protected function _welcome() {
216:         $this->out();
217:         $this->out(__d('cake_console', '<info>Welcome to CakePHP %s Console</info>', 'v' . Configure::version()));
218:         $this->hr();
219:         $this->out(__d('cake_console', 'App : %s', APP_DIR));
220:         $this->out(__d('cake_console', 'Path: %s', APP));
221:         $this->hr();
222:     }
223: 
224: /**
225:  * If $uses = true
226:  * Loads AppModel file and constructs AppModel class
227:  * makes $this->AppModel available to subclasses
228:  * If public $uses is an array of models will load those models
229:  *
230:  * @return boolean
231:  */
232:     protected function _loadModels() {
233:         if ($this->uses === null || $this->uses === false) {
234:             return;
235:         }
236:         App::uses('ClassRegistry', 'Utility');
237: 
238:         if ($this->uses !== true && !empty($this->uses)) {
239:             $uses = is_array($this->uses) ? $this->uses : array($this->uses);
240: 
241:             $modelClassName = $uses[0];
242:             if (strpos($uses[0], '.') !== false) {
243:                 list($plugin, $modelClassName) = explode('.', $uses[0]);
244:             }
245:             $this->modelClass = $modelClassName;
246: 
247:             foreach ($uses as $modelClass) {
248:                 list($plugin, $modelClass) = pluginSplit($modelClass, true);
249:                 $this->{$modelClass} = ClassRegistry::init($plugin . $modelClass);
250:             }
251:             return true;
252:         }
253:         return false;
254:     }
255: 
256: /**
257:  * Loads tasks defined in public $tasks
258:  *
259:  * @return boolean
260:  */
261:     public function loadTasks() {
262:         if ($this->tasks === true || empty($this->tasks) || empty($this->Tasks)) {
263:             return true;
264:         }
265:         $this->_taskMap = TaskCollection::normalizeObjectArray((array)$this->tasks);
266:         foreach ($this->_taskMap as $task => $properties) {
267:             $this->taskNames[] = $task;
268:         }
269:         return true;
270:     }
271: 
272: /**
273:  * Check to see if this shell has a task with the provided name.
274:  *
275:  * @param string $task The task name to check.
276:  * @return boolean Success
277:  * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::hasTask
278:  */
279:     public function hasTask($task) {
280:         return isset($this->_taskMap[Inflector::camelize($task)]);
281:     }
282: 
283: /**
284:  * Check to see if this shell has a callable method by the given name.
285:  *
286:  * @param string $name The method name to check.
287:  * @return boolean
288:  * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::hasMethod
289:  */
290:     public function hasMethod($name) {
291:         try {
292:             $method = new ReflectionMethod($this, $name);
293:             if (!$method->isPublic() || substr($name, 0, 1) === '_') {
294:                 return false;
295:             }
296:             if ($method->getDeclaringClass()->name == 'Shell') {
297:                 return false;
298:             }
299:             return true;
300:         } catch (ReflectionException $e) {
301:             return false;
302:         }
303:     }
304: 
305: /**
306:  * Dispatch a command to another Shell. Similar to Object::requestAction()
307:  * but intended for running shells from other shells.
308:  *
309:  * ### Usage:
310:  *
311:  * With a string command:
312:  *
313:  *  `return $this->dispatchShell('schema create DbAcl');`
314:  *
315:  * Avoid using this form if you have string arguments, with spaces in them.
316:  * The dispatched will be invoked incorrectly. Only use this form for simple
317:  * command dispatching.
318:  *
319:  * With an array command:
320:  *
321:  * `return $this->dispatchShell('schema', 'create', 'i18n', '--dry');`
322:  *
323:  * @return mixed The return of the other shell.
324:  * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::dispatchShell
325:  */
326:     public function dispatchShell() {
327:         $args = func_get_args();
328:         if (is_string($args[0]) && count($args) == 1) {
329:             $args = explode(' ', $args[0]);
330:         }
331: 
332:         $Dispatcher = new ShellDispatcher($args, false);
333:         return $Dispatcher->dispatch();
334:     }
335: 
336: /**
337:  * Runs the Shell with the provided argv.
338:  *
339:  * Delegates calls to Tasks and resolves methods inside the class. Commands are looked
340:  * up with the following order:
341:  *
342:  * - Method on the shell.
343:  * - Matching task name.
344:  * - `main()` method.
345:  *
346:  * If a shell implements a `main()` method, all missing method calls will be sent to
347:  * `main()` with the original method name in the argv.
348:  *
349:  * @param string $command The command name to run on this shell. If this argument is empty,
350:  *   and the shell has a `main()` method, that will be called instead.
351:  * @param array $argv Array of arguments to run the shell with. This array should be missing the shell name.
352:  * @return void
353:  * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::runCommand
354:  */
355:     public function runCommand($command, $argv) {
356:         $isTask = $this->hasTask($command);
357:         $isMethod = $this->hasMethod($command);
358:         $isMain = $this->hasMethod('main');
359: 
360:         if ($isTask || $isMethod && $command !== 'execute') {
361:             array_shift($argv);
362:         }
363: 
364:         try {
365:             $this->OptionParser = $this->getOptionParser();
366:             list($this->params, $this->args) = $this->OptionParser->parse($argv, $command);
367:         } catch (ConsoleException $e) {
368:             $this->out($this->OptionParser->help($command));
369:             return false;
370:         }
371: 
372:         $this->command = $command;
373:         if (!empty($this->params['help'])) {
374:             return $this->_displayHelp($command);
375:         }
376: 
377:         if (($isTask || $isMethod || $isMain) && $command !== 'execute') {
378:             $this->startup();
379:         }
380: 
381:         if ($isTask) {
382:             $command = Inflector::camelize($command);
383:             return $this->{$command}->runCommand('execute', $argv);
384:         }
385:         if ($isMethod) {
386:             return $this->{$command}();
387:         }
388:         if ($isMain) {
389:             return $this->main();
390:         }
391:         $this->out($this->OptionParser->help($command));
392:         return false;
393:     }
394: 
395: /**
396:  * Display the help in the correct format
397:  *
398:  * @param string $command
399:  * @return void
400:  */
401:     protected function _displayHelp($command) {
402:         $format = 'text';
403:         if (!empty($this->args[0]) && $this->args[0] == 'xml')  {
404:             $format = 'xml';
405:             $this->stdout->outputAs(ConsoleOutput::RAW);
406:         } else {
407:             $this->_welcome();
408:         }
409:         return $this->out($this->OptionParser->help($command, $format));
410:     }
411: 
412: /**
413:  * Gets the option parser instance and configures it.
414:  * By overriding this method you can configure the ConsoleOptionParser before returning it.
415:  *
416:  * @return ConsoleOptionParser
417:  * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::getOptionParser
418:  */
419:     public function getOptionParser() {
420:         $name = ($this->plugin ? $this->plugin . '.' : '') . $this->name;
421:         $parser = new ConsoleOptionParser($name);
422:         return $parser;
423:     }
424: 
425: /**
426:  * Overload get for lazy building of tasks
427:  *
428:  * @param string $name
429:  * @return Shell Object of Task
430:  */
431:     public function __get($name) {
432:         if (empty($this->{$name}) && in_array($name, $this->taskNames)) {
433:             $properties = $this->_taskMap[$name];
434:             $this->{$name} = $this->Tasks->load($properties['class'], $properties['settings']);
435:             $this->{$name}->args =& $this->args;
436:             $this->{$name}->params =& $this->params;
437:             $this->{$name}->initialize();
438:             $this->{$name}->loadTasks();
439:         }
440:         return $this->{$name};
441:     }
442: 
443: /**
444:  * Prompts the user for input, and returns it.
445:  *
446:  * @param string $prompt Prompt text.
447:  * @param mixed $options Array or string of options.
448:  * @param string $default Default input value.
449:  * @return mixed Either the default value, or the user-provided input.
450:  * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::in
451:  */
452:     public function in($prompt, $options = null, $default = null) {
453:         if (!$this->interactive) {
454:             return $default;
455:         }
456:         $in = $this->_getInput($prompt, $options, $default);
457: 
458:         if ($options && is_string($options)) {
459:             if (strpos($options, ',')) {
460:                 $options = explode(',', $options);
461:             } elseif (strpos($options, '/')) {
462:                 $options = explode('/', $options);
463:             } else {
464:                 $options = array($options);
465:             }
466:         }
467:         if (is_array($options)) {
468:             $options = array_merge(
469:                 array_map('strtolower', $options),
470:                 array_map('strtoupper', $options),
471:                 $options
472:             );
473:             while ($in === '' || !in_array($in, $options)) {
474:                 $in = $this->_getInput($prompt, $options, $default);
475:             }
476:         }
477:         return $in;
478:     }
479: 
480: /**
481:  * Prompts the user for input, and returns it.
482:  *
483:  * @param string $prompt Prompt text.
484:  * @param mixed $options Array or string of options.
485:  * @param string $default Default input value.
486:  * @return Either the default value, or the user-provided input.
487:  */
488:     protected function _getInput($prompt, $options, $default) {
489:         if (!is_array($options)) {
490:             $printOptions = '';
491:         } else {
492:             $printOptions = '(' . implode('/', $options) . ')';
493:         }
494: 
495:         if ($default === null) {
496:             $this->stdout->write('<question>' . $prompt . '</question>' . " $printOptions \n" . '> ', 0);
497:         } else {
498:             $this->stdout->write('<question>' . $prompt . '</question>' . " $printOptions \n" . "[$default] > ", 0);
499:         }
500:         $result = $this->stdin->read();
501: 
502:         if ($result === false) {
503:             $this->_stop(1);
504:         }
505:         $result = trim($result);
506: 
507:         if ($default !== null && ($result === '' || $result === null)) {
508:             return $default;
509:         }
510:         return $result;
511:     }
512: 
513: /**
514:  * Wrap a block of text.
515:  * Allows you to set the width, and indenting on a block of text.
516:  *
517:  * ### Options
518:  *
519:  * - `width` The width to wrap to.  Defaults to 72
520:  * - `wordWrap` Only wrap on words breaks (spaces) Defaults to true.
521:  * - `indent` Indent the text with the string provided. Defaults to null.
522:  *
523:  * @param string $text Text the text to format.
524:  * @param mixed $options Array of options to use, or an integer to wrap the text to.
525:  * @return string Wrapped / indented text
526:  * @see String::wrap()
527:  * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::wrapText
528:  */
529:     public function wrapText($text, $options = array()) {
530:         return String::wrap($text, $options);
531:     }
532: 
533: /**
534:  * Outputs a single or multiple messages to stdout. If no parameters
535:  * are passed outputs just a newline.
536:  *
537:  * ### Output levels
538:  *
539:  * There are 3 built-in output level.  Shell::QUIET, Shell::NORMAL, Shell::VERBOSE.
540:  * The verbose and quiet output levels, map to the `verbose` and `quiet` output switches
541:  * present in  most shells.  Using Shell::QUIET for a message means it will always display.
542:  * While using Shell::VERBOSE means it will only display when verbose output is toggled.
543:  *
544:  * @param mixed $message A string or a an array of strings to output
545:  * @param integer $newlines Number of newlines to append
546:  * @param integer $level The message's output level, see above.
547:  * @return integer|boolean Returns the number of bytes returned from writing to stdout.
548:  * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::out
549:  */
550:     public function out($message = null, $newlines = 1, $level = Shell::NORMAL) {
551:         $currentLevel = Shell::NORMAL;
552:         if (!empty($this->params['verbose'])) {
553:             $currentLevel = Shell::VERBOSE;
554:         }
555:         if (!empty($this->params['quiet'])) {
556:             $currentLevel = Shell::QUIET;
557:         }
558:         if ($level <= $currentLevel) {
559:             return $this->stdout->write($message, $newlines);
560:         }
561:         return true;
562:     }
563: 
564: /**
565:  * Outputs a single or multiple error messages to stderr. If no parameters
566:  * are passed outputs just a newline.
567:  *
568:  * @param mixed $message A string or a an array of strings to output
569:  * @param integer $newlines Number of newlines to append
570:  * @return void
571:  * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::err
572:  */
573:     public function err($message = null, $newlines = 1) {
574:         $this->stderr->write($message, $newlines);
575:     }
576: 
577: /**
578:  * Returns a single or multiple linefeeds sequences.
579:  *
580:  * @param integer $multiplier Number of times the linefeed sequence should be repeated
581:  * @return string
582:  * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::nl
583:  */
584:     public function nl($multiplier = 1) {
585:         return str_repeat(ConsoleOutput::LF, $multiplier);
586:     }
587: 
588: /**
589:  * Outputs a series of minus characters to the standard output, acts as a visual separator.
590:  *
591:  * @param integer $newlines Number of newlines to pre- and append
592:  * @param integer $width Width of the line, defaults to 63
593:  * @return void
594:  * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::hr
595:  */
596:     public function hr($newlines = 0, $width = 63) {
597:         $this->out(null, $newlines);
598:         $this->out(str_repeat('-', $width));
599:         $this->out(null, $newlines);
600:     }
601: 
602: /**
603:  * Displays a formatted error message
604:  * and exits the application with status code 1
605:  *
606:  * @param string $title Title of the error
607:  * @param string $message An optional error message
608:  * @return void
609:  * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::error
610:  */
611:     public function error($title, $message = null) {
612:         $this->err(__d('cake_console', '<error>Error:</error> %s', $title));
613: 
614:         if (!empty($message)) {
615:             $this->err($message);
616:         }
617:         $this->_stop(1);
618:     }
619: 
620: /**
621:  * Clear the console
622:  *
623:  * @return void
624:  * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::clear
625:  */
626:     public function clear() {
627:         if (empty($this->params['noclear'])) {
628:             if (DS === '/') {
629:                 passthru('clear');
630:             } else {
631:                 passthru('cls');
632:             }
633:         }
634:     }
635: 
636: /**
637:  * Creates a file at given path
638:  *
639:  * @param string $path Where to put the file.
640:  * @param string $contents Content to put in the file.
641:  * @return boolean Success
642:  * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::createFile
643:  */
644:     public function createFile($path, $contents) {
645:         $path = str_replace(DS . DS, DS, $path);
646: 
647:         $this->out();
648: 
649:         if (is_file($path) && $this->interactive === true) {
650:             $this->out(__d('cake_console', '<warning>File `%s` exists</warning>', $path));
651:             $key = $this->in(__d('cake_console', 'Do you want to overwrite?'), array('y', 'n', 'q'), 'n');
652: 
653:             if (strtolower($key) == 'q') {
654:                 $this->out(__d('cake_console', '<error>Quitting</error>.'), 2);
655:                 $this->_stop();
656:             } elseif (strtolower($key) != 'y') {
657:                 $this->out(__d('cake_console', 'Skip `%s`', $path), 2);
658:                 return false;
659:             }
660:         } else {
661:             $this->out(__d('cake_console', 'Creating file %s', $path));
662:         }
663: 
664:         $File = new File($path, true);
665:         if ($File->exists() && $File->writable()) {
666:             $data = $File->prepare($contents);
667:             $File->write($data);
668:             $this->out(__d('cake_console', '<success>Wrote</success> `%s`', $path));
669:             return true;
670:         } else {
671:             $this->err(__d('cake_console', '<error>Could not write to `%s`</error>.', $path), 2);
672:             return false;
673:         }
674:     }
675: 
676: /**
677:  * Action to create a Unit Test
678:  *
679:  * @return boolean Success
680:  */
681:     protected function _checkUnitTest() {
682:         if (App::import('Vendor', 'phpunit', array('file' => 'PHPUnit' . DS . 'Autoload.php'))) {
683:             return true;
684:         }
685:         if (@include 'PHPUnit' . DS . 'Autoload.php') {
686:             return true;
687:         }
688:         $prompt = __d('cake_console', 'PHPUnit is not installed. Do you want to bake unit test files anyway?');
689:         $unitTest = $this->in($prompt, array('y', 'n'), 'y');
690:         $result = strtolower($unitTest) == 'y' || strtolower($unitTest) == 'yes';
691: 
692:         if ($result) {
693:             $this->out();
694:             $this->out(__d('cake_console', 'You can download PHPUnit from %s', 'http://phpunit.de'));
695:         }
696:         return $result;
697:     }
698: 
699: /**
700:  * Makes absolute file path easier to read
701:  *
702:  * @param string $file Absolute file path
703:  * @return string short path
704:  * @link http://book.cakephp.org/2.0/en/console-and-shells.html#Shell::shortPath
705:  */
706:     public function shortPath($file) {
707:         $shortPath = str_replace(ROOT, null, $file);
708:         $shortPath = str_replace('..' . DS, '', $shortPath);
709:         return str_replace(DS . DS, DS, $shortPath);
710:     }
711: 
712: /**
713:  * Creates the proper controller path for the specified controller class name
714:  *
715:  * @param string $name Controller class name
716:  * @return string Path to controller
717:  */
718:     protected function _controllerPath($name) {
719:         return Inflector::underscore($name);
720:     }
721: 
722: /**
723:  * Creates the proper controller plural name for the specified controller class name
724:  *
725:  * @param string $name Controller class name
726:  * @return string Controller plural name
727:  */
728:     protected function _controllerName($name) {
729:         return Inflector::pluralize(Inflector::camelize($name));
730:     }
731: 
732: /**
733:  * Creates the proper model camelized name (singularized) for the specified name
734:  *
735:  * @param string $name Name
736:  * @return string Camelized and singularized model name
737:  */
738:     protected function _modelName($name) {
739:         return Inflector::camelize(Inflector::singularize($name));
740:     }
741: 
742: /**
743:  * Creates the proper underscored model key for associations
744:  *
745:  * @param string $name Model class name
746:  * @return string Singular model key
747:  */
748:     protected function _modelKey($name) {
749:         return Inflector::underscore($name) . '_id';
750:     }
751: 
752: /**
753:  * Creates the proper model name from a foreign key
754:  *
755:  * @param string $key Foreign key
756:  * @return string Model name
757:  */
758:     protected function _modelNameFromKey($key) {
759:         return Inflector::camelize(str_replace('_id', '', $key));
760:     }
761: 
762: /**
763:  * creates the singular name for use in views.
764:  *
765:  * @param string $name
766:  * @return string $name
767:  */
768:     protected function _singularName($name) {
769:         return Inflector::variable(Inflector::singularize($name));
770:     }
771: 
772: /**
773:  * Creates the plural name for views
774:  *
775:  * @param string $name Name to use
776:  * @return string Plural name for views
777:  */
778:     protected function _pluralName($name) {
779:         return Inflector::variable(Inflector::pluralize($name));
780:     }
781: 
782: /**
783:  * Creates the singular human name used in views
784:  *
785:  * @param string $name Controller name
786:  * @return string Singular human name
787:  */
788:     protected function _singularHumanName($name) {
789:         return Inflector::humanize(Inflector::underscore(Inflector::singularize($name)));
790:     }
791: 
792: /**
793:  * Creates the plural human name used in views
794:  *
795:  * @param string $name Controller name
796:  * @return string Plural human name
797:  */
798:     protected function _pluralHumanName($name) {
799:         return Inflector::humanize(Inflector::underscore($name));
800:     }
801: 
802: /**
803:  * Find the correct path for a plugin. Scans $pluginPaths for the plugin you want.
804:  *
805:  * @param string $pluginName Name of the plugin you want ie. DebugKit
806:  * @return string $path path to the correct plugin.
807:  */
808:     protected function _pluginPath($pluginName) {
809:         if (CakePlugin::loaded($pluginName)) {
810:             return CakePlugin::path($pluginName);
811:         }
812:         return current(App::path('plugins')) . $pluginName . DS;
813:     }
814: }
815: 
OpenHub
Rackspace
Rackspace
  • Business Solutions
  • Showcase
  • Documentation
  • Book
  • API
  • Videos
  • Reporting Security Issues
  • Privacy Policy
  • Logos & Trademarks
  • Community
  • Get Involved
  • Issues (GitHub)
  • Bakery
  • Featured Resources
  • Training
  • Meetups
  • My CakePHP
  • CakeFest
  • Newsletter
  • Linkedin
  • YouTube
  • Facebook
  • Twitter
  • Mastodon
  • Help & Support
  • Forum
  • Stack Overflow
  • Slack
  • Paid Support

Generated using CakePHP API Docs