| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_View
- * @subpackage Helper
- * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- * @version $Id$
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- /** Zend_Registry */
- require_once 'Zend/Registry.php';
- /** Zend_View_Helper_Placeholder_Container_Abstract */
- require_once 'Zend/View/Helper/Placeholder/Container/Abstract.php';
- /** Zend_View_Helper_Placeholder_Container */
- require_once 'Zend/View/Helper/Placeholder/Container.php';
- /**
- * Registry for placeholder containers
- *
- * @package Zend_View
- * @subpackage Helper
- * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- class Zend_View_Helper_Placeholder_Registry
- {
- /**
- * Zend_Registry key under which placeholder registry exists
- * @const string
- */
- const REGISTRY_KEY = 'Zend_View_Helper_Placeholder_Registry';
- /**
- * Default container class
- * @var string
- */
- protected $_containerClass = 'Zend_View_Helper_Placeholder_Container';
- /**
- * Placeholder containers
- * @var array
- */
- protected $_items = array();
- /**
- * Retrieve or create registry instnace
- *
- * @return void
- */
- public static function getRegistry()
- {
- if (Zend_Registry::isRegistered(self::REGISTRY_KEY)) {
- $registry = Zend_Registry::get(self::REGISTRY_KEY);
- } else {
- $registry = new self();
- Zend_Registry::set(self::REGISTRY_KEY, $registry);
- }
- return $registry;
- }
- /**
- * createContainer
- *
- * @param string $key
- * @param array $value
- * @return Zend_View_Helper_Placeholder_Container_Abstract
- */
- public function createContainer($key, array $value = array())
- {
- $key = (string) $key;
- $this->_items[$key] = new $this->_containerClass($value);
- return $this->_items[$key];
- }
- /**
- * Retrieve a placeholder container
- *
- * @param string $key
- * @return Zend_View_Helper_Placeholder_Container_Abstract
- */
- public function getContainer($key)
- {
- $key = (string) $key;
- if (isset($this->_items[$key])) {
- return $this->_items[$key];
- }
- $container = $this->createContainer($key);
- return $container;
- }
- /**
- * Does a particular container exist?
- *
- * @param string $key
- * @return bool
- */
- public function containerExists($key)
- {
- $key = (string) $key;
- $return = array_key_exists($key, $this->_items);
- return $return;
- }
- /**
- * Set the container for an item in the registry
- *
- * @param string $key
- * @param Zend_View_Placeholder_Container_Abstract $container
- * @return Zend_View_Placeholder_Registry
- */
- public function setContainer($key, Zend_View_Helper_Placeholder_Container_Abstract $container)
- {
- $key = (string) $key;
- $this->_items[$key] = $container;
- return $this;
- }
- /**
- * Delete a container
- *
- * @param string $key
- * @return bool
- */
- public function deleteContainer($key)
- {
- $key = (string) $key;
- if (isset($this->_items[$key])) {
- unset($this->_items[$key]);
- return true;
- }
- return false;
- }
- /**
- * Set the container class to use
- *
- * @param string $name
- * @return Zend_View_Helper_Placeholder_Registry
- */
- public function setContainerClass($name)
- {
- if (!class_exists($name)) {
- require_once 'Zend/Loader.php';
- Zend_Loader::loadClass($name);
- }
- $reflection = new ReflectionClass($name);
- if (!$reflection->isSubclassOf(new ReflectionClass('Zend_View_Helper_Placeholder_Container_Abstract'))) {
- require_once 'Zend/View/Helper/Placeholder/Registry/Exception.php';
- $e = new Zend_View_Helper_Placeholder_Registry_Exception('Invalid Container class specified');
- $e->setView($this->view);
- throw $e;
- }
- $this->_containerClass = $name;
- return $this;
- }
- /**
- * Retrieve the container class
- *
- * @return string
- */
- public function getContainerClass()
- {
- return $this->_containerClass;
- }
- }
|