| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @since 3.0.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\View;
- use Cake\Datasource\ModelAwareTrait;
- use Cake\Event\EventDispatcherTrait;
- use Cake\Event\EventManager;
- use Cake\Network\Request;
- use Cake\Network\Response;
- use Cake\ORM\Locator\LocatorAwareTrait;
- use Cake\Utility\Inflector;
- use Cake\View\Exception\MissingCellViewException;
- use Cake\View\Exception\MissingTemplateException;
- use Cake\View\ViewVarsTrait;
- /**
- * Cell base.
- *
- */
- abstract class Cell
- {
- use EventDispatcherTrait;
- use LocatorAwareTrait;
- use ModelAwareTrait;
- use ViewVarsTrait;
- /**
- * Instance of the View created during rendering. Won't be set until after
- * Cell::__toString() is called.
- *
- * @var \Cake\View\View
- * @deprecated 3.1.0 Use getView() instead.
- */
- public $View;
- /**
- * Name of the template that will be rendered.
- * This property is inflected from the action name that was invoked.
- *
- * @var string
- */
- public $template;
- /**
- * Automatically set to the name of a plugin.
- *
- * @var string
- */
- public $plugin = null;
- /**
- * An instance of a Cake\Network\Request object that contains information about the current request.
- * This object contains all the information about a request and several methods for reading
- * additional information about the request.
- *
- * @var \Cake\Network\Request
- */
- public $request;
- /**
- * An instance of a Response object that contains information about the impending response
- *
- * @var \Cake\Network\Response
- */
- public $response;
- /**
- * The helpers this cell uses.
- *
- * This property is copied automatically when using the CellTrait
- *
- * @var array
- */
- public $helpers = [];
- /**
- * These properties can be set directly on Cell and passed to the View as options.
- *
- * @var array
- * @see \Cake\View\View
- */
- protected $_validViewOptions = [
- 'viewPath'
- ];
- /**
- * List of valid options (constructor's fourth arguments)
- * Override this property in subclasses to whitelist
- * which options you want set as properties in your Cell.
- *
- * @var array
- */
- protected $_validCellOptions = [];
- /**
- * Caching setup.
- *
- * @var array|bool
- */
- protected $_cache = false;
- /**
- * Constructor.
- *
- * @param \Cake\Network\Request $request The request to use in the cell.
- * @param \Cake\Network\Response $response The response to use in the cell.
- * @param \Cake\Event\EventManager $eventManager The eventManager to bind events to.
- * @param array $cellOptions Cell options to apply.
- */
- public function __construct(
- Request $request = null,
- Response $response = null,
- EventManager $eventManager = null,
- array $cellOptions = []
- ) {
- $this->eventManager($eventManager);
- $this->request = $request;
- $this->response = $response;
- $this->modelFactory('Table', [$this->tableLocator(), 'get']);
- foreach ($this->_validCellOptions as $var) {
- if (isset($cellOptions[$var])) {
- $this->{$var} = $cellOptions[$var];
- }
- }
- if (!empty($cellOptions['cache'])) {
- $this->_cache = $cellOptions['cache'];
- }
- }
- /**
- * Render the cell.
- *
- * @param string|null $template Custom template name to render. If not provided (null), the last
- * value will be used. This value is automatically set by `CellTrait::cell()`.
- * @return string The rendered cell.
- * @throws \Cake\View\Exception\MissingCellViewException When a MissingTemplateException is raised during rendering.
- */
- public function render($template = null)
- {
- if ($template !== null &&
- strpos($template, '/') === false &&
- strpos($template, '.') === false
- ) {
- $template = Inflector::underscore($template);
- }
- if ($template === null) {
- $template = $this->template;
- }
- $builder = $this->viewBuilder();
- $builder->layout(false);
- $builder->template($template);
- $cache = [];
- if ($this->_cache) {
- $cache = $this->_cacheConfig($template);
- }
- $this->View = $this->getView();
- $render = function () use ($template) {
- $className = substr(strrchr(get_class($this), "\\"), 1);
- $name = substr($className, 0, -4);
- $this->_view->viewPath('Cell' . DS . $name);
- try {
- return $this->_view->render($template);
- } catch (MissingTemplateException $e) {
- throw new MissingCellViewException(['file' => $template, 'name' => $name]);
- }
- };
- if ($cache) {
- return $this->_view->cache(function () use ($render) {
- echo $render();
- }, $cache);
- }
- return $render();
- }
- /**
- * Generate the cache key to use for this cell.
- *
- * If the key is undefined, the cell class and template will be used.
- *
- * @param string $template The template being rendered.
- * @return array The cache configuration.
- */
- protected function _cacheConfig($template)
- {
- if (empty($this->_cache)) {
- return [];
- }
- $key = 'cell_' . Inflector::underscore(get_class($this)) . '_' . $template;
- $key = str_replace('\\', '_', $key);
- $default = [
- 'config' => 'default',
- 'key' => $key
- ];
- if ($this->_cache === true) {
- return $default;
- }
- return $this->_cache + $default;
- }
- /**
- * Magic method.
- *
- * Starts the rendering process when Cell is echoed.
- *
- * *Note* This method will trigger an error when view rendering has a problem.
- * This is because PHP will not allow a __toString() method to throw an exception.
- *
- * @return string Rendered cell
- */
- public function __toString()
- {
- try {
- return $this->render();
- } catch (\Exception $e) {
- trigger_error('Could not render cell - ' . $e->getMessage(), E_USER_WARNING);
- return '';
- }
- }
- /**
- * Debug info.
- *
- * @return array
- */
- public function __debugInfo()
- {
- return [
- 'plugin' => $this->plugin,
- 'template' => $this->template,
- 'viewClass' => $this->viewClass,
- 'request' => $this->request,
- 'response' => $this->response,
- ];
- }
- }
|