2011-07-07 02:34:22 -04:30
<?php
/**
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
2013-02-08 20:59:49 +09:00
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
2011-07-07 02:34:22 -04:30
*
* Licensed under The MIT License
2013-02-08 21:22:51 +09:00
* For full copyright and license information, please see the LICENSE.txt
2011-07-07 02:34:22 -04:30
* Redistributions of files must retain the above copyright notice.
*
2013-02-08 20:59:49 +09:00
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
2011-07-07 02:34:22 -04:30
* @link http://cakephp.org CakePHP(tm) Project
2011-10-15 20:17:44 +02:00
* @package Cake.View.Errors
2011-07-07 09:59:02 -07:00
* @since CakePHP(tm) v 2.0
2013-05-31 00:11:14 +02:00
* @license http://www.opensource.org/licenses/mit-license.php MIT License
2011-07-07 02:34:22 -04:30
*/
?>
<h2><?php echo __d('cake_dev', 'Missing Plugin'); ?></h2>
<p class="error">
<strong><?php echo __d('cake_dev', 'Error'); ?>: </strong>
2013-05-09 23:12:07 -04: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 02:34:22 -04:30
</p>
<p class="error">
<strong><?php echo __d('cake_dev', 'Error'); ?>: </strong>
2013-08-15 03:14:50 +04: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 02:34:22 -04:30
</p>
<pre>
<?php
2013-05-09 23:12:07 -04:00
CakePlugin::load('<?php echo h($plugin); ?>');
2011-09-01 21:44:19 +01:00
2011-07-07 02:34:22 -04:30
</pre>
<p class="notice">
<strong><?php echo __d('cake_dev', 'Loading all plugins'); ?>: </strong>
2013-08-15 03:14:50 +04: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 02:34:22 -04:30
</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>
2015-09-25 17:11:20 +02:00
<?php
echo $this->element('exception_stack_trace');
2015-09-25 18:10:18 +02:00
?>