mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-16 11:58:25 +00:00
40 lines
1.2 KiB
Text
40 lines
1.2 KiB
Text
|
<?php
|
||
|
/* SVN FILE: $Id:$ */
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
* PHP versions 4 and 5
|
||
|
*
|
||
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
||
|
* Copyright (c) 2005, CakePHP Authors/Developers
|
||
|
*
|
||
|
* Author(s): Michal Tatarynowicz aka Pies <tatarynowicz@gmail.com>
|
||
|
* Larry E. Masters aka PhpNut <nut@phpnut.com>
|
||
|
* Kamil Dzielinski aka Brego <brego.dk@gmail.com>
|
||
|
*
|
||
|
* Licensed under The MIT License
|
||
|
* Redistributions of files must retain the above copyright notice.
|
||
|
*
|
||
|
* @filesource
|
||
|
* @author CakePHP Authors/Developers
|
||
|
* @copyright Copyright (c) 2005, CakePHP Authors/Developers
|
||
|
* @link https://trac.cakephp.org/wiki/Authors Authors/Developers
|
||
|
* @package cake
|
||
|
* @subpackage cake.cake.libs.view.templates.errors
|
||
|
* @since CakePHP v 0.10.0.1076
|
||
|
* @version $Revision$
|
||
|
* @modifiedby $LastChangedBy$
|
||
|
* @lastmodified $Date$
|
||
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
||
|
*/
|
||
|
?>
|
||
|
<?php $controller = Inflector::camelize($this->name)."Controller"; ?>
|
||
|
|
||
|
<h1>Private Method in <?php echo $controller;?></h1>
|
||
|
|
||
|
<p class="error">You are seeing this error because the action <em><?php echo $this->controller->privateAction;?></em>
|
||
|
should not be accessed directly
|
||
|
</p>
|