2006-01-13 23:53:23 +00:00
<?php
/* SVN FILE: $Id$ */
/**
*
*
*
*
* PHP versions 4 and 5
*
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
2006-05-26 05:29:17 +00:00
* Copyright (c) 2006, Cake Software Foundation, Inc.
* 1785 E. Sahara Avenue, Suite 490-204
* Las Vegas, Nevada 89104
2006-01-13 23:53:23 +00:00
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @filesource
2006-05-26 05:29:17 +00:00
* @copyright Copyright (c) 2006, 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
2006-01-13 23:53:23 +00:00
*/
?>
<h1>Missing Component File</h1>
2006-06-29 04:26:15 +00:00
<p class="error">You are seeing this error because the component file <em><?php echo "app".DS."controllers".DS."components".DS.r('_component', '', $file); ?></em>
2006-01-13 23:53:23 +00:00
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_component_file.thtml</code>
view file, a user-customizable error page for handling non-existent component class files.</span>
</p>
<p>
<strong>Fatal</strong>: Create the Class:
</p>
<p>
<p><?php<br />
class <?php echo $component;?>Component extends Object<br />
{<br />
// Your component functions here<br />
function <em>myComponentFunction</em> ()<br />
{<br />
}<br />
}<br />
?><br />
</p>
in file : <?php echo "app".DS."controllers".DS."components".DS.$file; ?>
</p>