2009-07-01 04:24:20 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Controller bake template file
|
|
|
|
*
|
|
|
|
* Allows templating of Controllers generated from bake.
|
|
|
|
*
|
2010-10-03 16:38:58 +00:00
|
|
|
* PHP 5
|
2009-07-01 04:24:20 +00:00
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2011-05-29 21:31:39 +00:00
|
|
|
* Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-07-01 04:24:20 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2011-05-29 21:31:39 +00:00
|
|
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-01-26 22:03:03 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Console.Templates.default.actions
|
2009-07-01 04:24:20 +00:00
|
|
|
* @since CakePHP(tm) v 1.3
|
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
|
|
|
|
|
|
|
echo "<?php\n";
|
2011-09-10 00:40:32 +00:00
|
|
|
echo "App::uses('{$plugin}AppController', '{$pluginPath}Controller');\n";
|
2009-07-01 04:24:20 +00:00
|
|
|
?>
|
2011-01-20 00:22:50 +00:00
|
|
|
/**
|
|
|
|
* <?php echo $controllerName; ?> Controller
|
|
|
|
*
|
2011-08-01 00:28:35 +00:00
|
|
|
<?php
|
|
|
|
if (!$isScaffold) {
|
|
|
|
$defaultModel = Inflector::singularize($controllerName);
|
|
|
|
echo " * @property {$defaultModel} \${$defaultModel}\n";
|
|
|
|
if (!empty($components)) {
|
|
|
|
foreach ($components as $component) {
|
|
|
|
echo " * @property {$component}Component \${$component}\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
2011-01-20 00:22:50 +00:00
|
|
|
*/
|
2009-07-01 04:24:20 +00:00
|
|
|
class <?php echo $controllerName; ?>Controller extends <?php echo $plugin; ?>AppController {
|
|
|
|
|
|
|
|
<?php if ($isScaffold): ?>
|
2011-01-20 00:22:50 +00:00
|
|
|
/**
|
|
|
|
* Scaffold
|
|
|
|
*
|
|
|
|
* @var mixed
|
|
|
|
*/
|
2010-04-04 06:46:01 +00:00
|
|
|
public $scaffold;
|
2009-07-01 04:24:20 +00:00
|
|
|
<?php else: ?>
|
|
|
|
<?php
|
|
|
|
if (count($helpers)):
|
2011-01-20 00:22:50 +00:00
|
|
|
echo "/**\n * Helpers\n *\n * @var array\n */\n";
|
2009-12-07 20:11:52 +00:00
|
|
|
echo "\tvar \$helpers = array(";
|
|
|
|
for ($i = 0, $len = count($helpers); $i < $len; $i++):
|
|
|
|
if ($i != $len - 1):
|
|
|
|
echo "'" . Inflector::camelize($helpers[$i]) . "', ";
|
|
|
|
else:
|
|
|
|
echo "'" . Inflector::camelize($helpers[$i]) . "'";
|
|
|
|
endif;
|
|
|
|
endfor;
|
|
|
|
echo ");\n";
|
2009-07-01 04:24:20 +00:00
|
|
|
endif;
|
|
|
|
|
|
|
|
if (count($components)):
|
2011-01-20 00:22:50 +00:00
|
|
|
echo "/**\n * Components\n *\n * @var array\n */\n";
|
2010-04-04 06:46:01 +00:00
|
|
|
echo "\tpublic \$components = array(";
|
2009-07-01 04:24:20 +00:00
|
|
|
for ($i = 0, $len = count($components); $i < $len; $i++):
|
|
|
|
if ($i != $len - 1):
|
|
|
|
echo "'" . Inflector::camelize($components[$i]) . "', ";
|
|
|
|
else:
|
|
|
|
echo "'" . Inflector::camelize($components[$i]) . "'";
|
|
|
|
endif;
|
|
|
|
endfor;
|
|
|
|
echo ");\n";
|
|
|
|
endif;
|
|
|
|
|
|
|
|
echo $actions;
|
|
|
|
|
|
|
|
endif; ?>
|
2009-07-29 02:53:29 +00:00
|
|
|
|
2009-07-01 04:24:20 +00:00
|
|
|
}
|