2011-07-07 07:04:22 +00:00
<?php
/**
*
*
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
2013-02-08 11:59:49 +00:00
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
2011-07-07 07:04:22 +00:00
*
* Licensed under The MIT License
2013-02-08 12:22:51 +00:00
* For full copyright and license information, please see the LICENSE.txt
2011-07-07 07:04:22 +00:00
* Redistributions of files must retain the above copyright notice.
*
2013-02-08 11:59:49 +00:00
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
2011-07-07 07:04:22 +00:00
* @link http://cakephp.org CakePHP(tm) Project
2011-10-15 18:17:44 +00:00
* @package Cake.View.Errors
2011-07-07 16:59:02 +00:00
* @since CakePHP(tm) v 2.0
2013-05-30 22:11:14 +00:00
* @license http://www.opensource.org/licenses/mit-license.php MIT License
2011-07-07 07:04:22 +00:00
*/
?>
<h2><?php echo __d('cake_dev', 'Missing Plugin'); ?></h2>
<p class="error">
<strong><?php echo __d('cake_dev', 'Error'); ?>: </strong>
2013-05-10 03:12:07 +00:00
<?php echo __d('cake_dev', 'The application is trying to load a file from the %s plugin', '<em>' . h($plugin) . '</em>'); ?>
2011-07-07 07:04:22 +00:00
</p>
<p class="error">
<strong><?php echo __d('cake_dev', 'Error'); ?>: </strong>
2013-08-14 23:14:50 +00:00
<?php echo __d('cake_dev', 'Make sure your plugin %s is in the %s directory and was loaded', $plugin, APP_DIR . DS . 'Plugin'); ?>
2011-07-07 07:04:22 +00:00
</p>
<pre>
<?php
2013-05-10 03:12:07 +00:00
CakePlugin::load('<?php echo h($plugin); ?>');
2011-09-01 20:44:19 +00:00
2011-07-07 07:04:22 +00:00
</pre>
<p class="notice">
<strong><?php echo __d('cake_dev', 'Loading all plugins'); ?>: </strong>
2013-08-14 23:14:50 +00:00
<?php echo __d('cake_dev', 'If you wish to load all plugins at once, use the following line in your %s file', APP_DIR . DS . 'Config' . DS . 'bootstrap.php'); ?>
2011-07-07 07:04:22 +00:00
</p>
<pre>
CakePlugin::loadAll();
</pre>
<p class="notice">
<strong><?php echo __d('cake_dev', 'Notice'); ?>: </strong>
<?php echo __d('cake_dev', 'If you want to customize this error message, create %s', APP_DIR . DS . 'View' . DS . 'Errors' . DS . 'missing_plugin.ctp'); ?>
</p>
<?php echo $this->element('exception_stack_trace'); ?>