當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Dojo\Dojo類代碼示例

本文整理匯總了PHP中Zend\Dojo\Dojo的典型用法代碼示例。如果您正苦於以下問題:PHP Dojo類的具體用法?PHP Dojo怎麽用?PHP Dojo使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Dojo類的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: setUp

 /**
  * Sets up the fixture, for example, open a network connection.
  * This method is called before a test is executed.
  *
  * @return void
  */
 public function setUp()
 {
     $registry = Registry::getInstance();
     if (isset($registry['Zend\\Dojo\\View\\Helper\\Dojo'])) {
         unset($registry['Zend\\Dojo\\View\\Helper\\Dojo']);
     }
     $this->view = new View\PhpRenderer();
     \Zend\Dojo\Dojo::enableView($this->view);
 }
開發者ID:RomanShumkov,項目名稱:zf2,代碼行數:15,代碼來源:BuildLayerTest.php

示例2: getDojo

 /**
  * Retrieve Dojo View Helper
  *
  * @return Zend_Dojo_View_Dojo_Container
  */
 public function getDojo()
 {
     if (null === $this->_dojo) {
         $this->getBootstrap()->bootstrap('view');
         $view = $this->getBootstrap()->view;
         \Zend\Dojo\Dojo::enableView($view);
         $view->dojo()->setOptions($this->getOptions());
         $this->_dojo = $view->dojo();
     }
     return $this->_dojo;
 }
開發者ID:heiglandreas,項目名稱:zf2,代碼行數:16,代碼來源:Dojo.php

示例3: getDojo

 /**
  * Retrieve Dojo View Helper
  *
  * @return Zend_Dojo_View_Dojo_Container
  */
 public function getDojo()
 {
     if (null === $this->_dojo) {
         $this->getBootstrap()->bootstrap('view');
         $view = $this->getBootstrap()->view;
         \Zend\Dojo\Dojo::enableView($view);
         $dojoContainer = $view->broker('dojo')->direct()->setOptions($this->getOptions());
         $this->_dojo = $dojoContainer;
     }
     return $this->_dojo;
 }
開發者ID:RomanShumkov,項目名稱:zf2,代碼行數:16,代碼來源:Dojo.php

示例4: getDojo

 /**
  * Retrieve Dojo View Helper
  *
  * @return Zend_Dojo_View_Dojo_Container
  */
 public function getDojo()
 {
     if (null === $this->_dojo) {
         $this->getBootstrap()->bootstrap('view');
         $view = $this->getBootstrap()->view;
         DojoConfigurator::enableView($view);
         $dojo = $view->plugin('dojo');
         $dojoContainer = $dojo();
         $dojoContainer->setOptions($this->getOptions());
         $this->_dojo = $dojoContainer;
     }
     return $this->_dojo;
 }
開發者ID:bradley-holt,項目名稱:zf2,代碼行數:18,代碼來源:Dojo.php

示例5: getView

 public function getView()
 {
     $view = new View();
     \Zend\Dojo\Dojo::enableView($view);
     return $view;
 }
開發者ID:heiglandreas,項目名稱:zf2,代碼行數:6,代碼來源:FormTest.php

示例6: testDisableViewShouldUnregisterDojoViewHelpers

 public function testDisableViewShouldUnregisterDojoViewHelpers()
 {
     $view = new View\PhpRenderer();
     \Zend\Dojo\Dojo::enableView($view);
     $this->assertInstanceOf('Zend\\Dojo\\View\\Helper\\Dojo', $view->plugin('dojo'));
     \Zend\Dojo\Dojo::disableView($view);
     try {
         $view->plugin('dojo');
         $this->fail('RuntimeException was expected but not thrown');
     } catch (\Zend\Loader\Exception\RuntimeException $e) {
         // success
     }
 }
開發者ID:rafalwrzeszcz,項目名稱:zf2,代碼行數:13,代碼來源:DojoTest.php

示例7: testEnableViewShouldSetAppropriateViewHelperPaths

 public function testEnableViewShouldSetAppropriateViewHelperPaths()
 {
     $view = new View();
     \Zend\Dojo\Dojo::enableView($view);
     $helperLoader = $view->getPluginLoader('helper');
     $paths = $helperLoader->getPaths('Zend\\Dojo\\View\\Helper');
     $this->assertTrue(is_array($paths));
 }
開發者ID:rmarshall-quibids,項目名稱:zf2,代碼行數:8,代碼來源:DojoTest.php


注:本文中的Zend\Dojo\Dojo類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。