2005-12-23 21:57:26 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id:$ */
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
|
|
|
* Copyright (c) 2005, Cake Software Foundation, Inc.
|
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @filesource
|
|
|
|
* @copyright Copyright (c) 2005, Cake Software Foundation, Inc.
|
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
|
|
|
|
* @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
|
|
|
|
|
|
|
|
$missingClass = $this->controller->missingHelperClass;
|
|
|
|
$missingFile = $this->controller->missingHelperFile;
|
|
|
|
|
|
|
|
?>
|
|
|
|
<h1>Missing Helper File</h1>
|
|
|
|
|
|
|
|
<p class="error">You are seeing this error because the view helper file <em><?php echo $missingFile;?></em>
|
|
|
|
can't be found or doesn't exist
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<span class="notice"><strong>Notice:</strong> this error is being rendered by the <code>app/views/errors/missing_helper_file.thtml</code>
|
|
|
|
view file, a user-customizable error page for handling non-existent view helper files.</span>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<strong>Fatal</strong>: Create the Class:
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<?php echo "<pre><?php\n\nclass " . $missingClass ." extends Helper {\n
|
|
|
|
// Your helper functions here
|
|
|
|
function <em>myHelperFunction</em> ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}\n?></pre>"; ?>
|
|
|
|
in file : <?php echo "app".DS."views".DS."helpers".DS.$missingFile.".php"; ?>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<strong>Error</strong>: Unable to load helper file <em><?php echo $missingFile.".php";?></em> in
|
|
|
|
<em>View::_loadHelpers</em>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<?php if (DEBUG>1):?>
|
|
|
|
<h2>Controller dump:</h2>
|
|
|
|
<pre>
|
|
|
|
<?php
|
|
|
|
unset($this->db);
|
|
|
|
print_r($this);
|
|
|
|
?>
|
|
|
|
</pre>
|
2005-10-03 04:48:00 +00:00
|
|
|
<?php endif?>
|