Exemplo n.º 1
0
 /**
  * Constructor
  */
 public function __construct($config = array(), $translate = null)
 {
     parent::__construct($config);
     $this->_translate = $translate;
     $this->_placeholderRegistry = Zend_View_Helper_Placeholder_Registry::getRegistry();
     if (array_key_exists('use_module_cache', $config) && (bool) $config['use_module_cache']) {
         $this->_moduleCache = OntoWiki::getInstance()->getCache();
     }
 }
Exemplo n.º 2
0
 public function testNamespaceRegisteredInPlaceholderRegistryAfterInstantiation()
 {
     $registry = Zend_View_Helper_Placeholder_Registry::getRegistry();
     if ($registry->containerExists('Zend_View_Helper_HeadMeta')) {
         $registry->deleteContainer('Zend_View_Helper_HeadMeta');
     }
     $this->assertFalse($registry->containerExists('Zend_View_Helper_HeadMeta'));
     $helper = new Zend_View_Helper_HeadMeta();
     $this->assertTrue($registry->containerExists('Zend_View_Helper_HeadMeta'));
 }
Exemplo n.º 3
0
 public function renderAdmin($name, $placeholderName = 'content', $model = null)
 {
     $result = $this->view->placeholder($placeholderName)->toString();
     if ($this->_access()) {
         if (sizeof($model)) {
             foreach ($model as $k => $v) {
                 $this->view->{$k} = $v;
             }
         }
         $this->view->content = $result;
         $result = $this->view->render($name);
     }
     Zend_View_Helper_Placeholder_Registry::getRegistry()->deleteContainer($placeholderName);
     return $result;
 }
Exemplo n.º 4
0
 /**
  * Обрамляем текуший текст шаблоном
  *
  * @param string $text
  * @return string
  */
 public function wrap($name, $function = false, $placeholderName = 'body', $model = null)
 {
     if ('content_item' == $placeholderName || 'content' == $placeholderName) {
         $this->view->placeholder($placeholderName)->captureStart();
         $function();
         $this->view->placeholder($placeholderName)->captureEnd();
         return $this->view->renderAdmin($name, $placeholderName, $model);
     }
     $return = $resultEcho = false;
     if (is_callable($function)) {
         $this->view->placeholder($placeholderName)->captureStart();
         $return = $function();
         $this->view->placeholder($placeholderName)->captureEnd();
         $resultEcho = $this->view->placeholder($placeholderName)->toString();
         Zend_View_Helper_Placeholder_Registry::getRegistry()->deleteContainer($placeholderName);
     }
     $this->view->{$placeholderName} = $return ? $return : $resultEcho;
     $return = $this->view->render($name);
     unset($this->view->{$placeholderName});
     return $return;
 }
 /**
  * Initialize placeholder container for layout vars
  * 
  * @return Zend_View_Helper_Placeholder_Container
  */
 protected function _initVarContainer()
 {
     if (null === $this->_container) {
         require_once 'Zend/View/Helper/Placeholder/Registry.php';
         $this->_container = Zend_View_Helper_Placeholder_Registry::getRegistry()->getContainer(__CLASS__);
     }
     return $this->_container;
 }
Exemplo n.º 6
0
 /**
  * Constructor
  *
  * Retrieve container registry from Zend_Registry, or create new one and register it.
  * 
  * @return void
  */
 public function __construct()
 {
     $this->_registry = Zend_View_Helper_Placeholder_Registry::getRegistry();
 }
Exemplo n.º 7
0
 /**
  * Constructor
  * 
  * @return void
  */
 public function __construct()
 {
     $this->setRegistry(Zend_View_Helper_Placeholder_Registry::getRegistry());
     $registry = $this->getRegistry();
     $this->setContainer($this->getRegistry()->getContainer($this->_regKey));
 }
Exemplo n.º 8
0
 public function testGetRegistryRegistersWithGlobalRegistry()
 {
     $this->assertFalse(Zend_Registry::isRegistered(Zend_View_Helper_Placeholder_Registry::REGISTRY_KEY));
     $registry = Zend_View_Helper_Placeholder_Registry::getRegistry();
     $this->assertTrue(Zend_Registry::isRegistered(Zend_View_Helper_Placeholder_Registry::REGISTRY_KEY));
     $registered = Zend_Registry::get(Zend_View_Helper_Placeholder_Registry::REGISTRY_KEY);
     $this->assertSame($registry, $registered);
 }
Exemplo n.º 9
0
 /**
  * Initialize placeholder container for layout vars
  *
  * @return Zend_View_Helper_Placeholder_Container
  */
 protected function _initVarContainer()
 {
     if (null === $this->_container) {
         $this->_container = Zend_View_Helper_Placeholder_Registry::getRegistry()->getContainer(__CLASS__);
     }
     return $this->_container;
 }
Exemplo n.º 10
0
 /**
  * @group ZF-10343
  */
 public function testSetMetaCharsetShouldOnlyAvailableForHtml5()
 {
     $charset = 'UTF-8';
     $options = array('doctype' => 'XHTML1_STRICT', 'charset' => $charset);
     $resource = new Zend_Application_Resource_View($options);
     $view = $resource->init();
     $headMetaHelper = $view->headMeta();
     $actual = null;
     $container = $headMetaHelper->getContainer();
     foreach ($container as $item) {
         if ('charset' == $item->type) {
             $actual = $item->charset;
             break;
         }
     }
     $this->assertFalse($view->doctype()->isHtml5());
     $this->assertNull($actual);
     $registry = Zend_View_Helper_Placeholder_Registry::getRegistry();
     $registry->deleteContainer('Zend_View_Helper_HeadMeta');
     $registry->deleteContainer('Zend_View_Helper_Doctype');
 }