当前位置: 首页>>代码示例>>PHP>>正文


PHP Mage_Core_Block_Template::fetchView方法代码示例

本文整理汇总了PHP中Mage_Core_Block_Template::fetchView方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Core_Block_Template::fetchView方法的具体用法?PHP Mage_Core_Block_Template::fetchView怎么用?PHP Mage_Core_Block_Template::fetchView使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Mage_Core_Block_Template的用法示例。


在下文中一共展示了Mage_Core_Block_Template::fetchView方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testFetchView

 /**
  * @covers Mage_Core_Block_Template::fetchView
  * @covers Mage_Core_Block_Abstract::setLayout
  * @covers Mage_Core_Block_Abstract::getLayout
  * @see testAssign
  */
 public function testFetchView()
 {
     $layout = new Mage_Core_Model_Layout();
     $layout->setDirectOutput(true);
     $this->_block->setLayout($layout);
     $this->assertTrue($this->_block->getDirectOutput());
     $this->assertEmpty($this->_block->fetchView(uniqid('invalid_filename.phtml')));
 }
开发者ID:NatashaOlut,项目名称:Mage_Test,代码行数:14,代码来源:Template.php

示例2: fetchView

 public function fetchView($fileName)
 {
     $module_dir = Mage::getModuleDir('', 'Tamarashorin_Commercebug');
     $this->setScriptPath($module_dir . '/static');
     return parent::fetchView($this->getTemplate());
 }
开发者ID:praxigento,项目名称:mage_app_prxgt_store,代码行数:6,代码来源:Html.php

示例3: fetchView

 public function fetchView($fileName)
 {
     return parent::fetchView($fileName);
 }
开发者ID:vlikin,项目名称:test_magento_skin,代码行数:4,代码来源:Bestsold.php

示例4: fetchView

 /**
  * Legacy fix that stops the HTML output from displaying
  *
  * @param string $fileName
  * @return string
  */
 public function fetchView($fileName)
 {
     return is_file($fileName) ? parent::fetchView($fileName) : '';
 }
开发者ID:LiamMcArthur,项目名称:extension-fishpig-wordpress-integration,代码行数:10,代码来源:Extend.php

示例5: fetchView

 /**
  * Retrieve block view from file (template)
  *
  * @param   string $fileName
  * @return  string
  */
 public function fetchView($fileName)
 {
     $module_dir = Mage::getModuleDir('', 'Ash_Devbar');
     $this->setScriptPath($module_dir . '/Template');
     return parent::fetchView($this->getTemplate());
 }
开发者ID:AleksNesh,项目名称:pandora,代码行数:12,代码来源:Template.php

示例6: fetchView

 public function fetchView($fileName)
 {
     //ignores file name, just uses a simple include with template name
     $this->setScriptPath(Mage::getConfig()->getModuleDir('', 'Alanstormdotcom_Systemsearch') . '/phtml');
     return parent::fetchView($this->getTemplate());
 }
开发者ID:itmyprofession,项目名称:Pulsestorm,代码行数:6,代码来源:Template.php

示例7: fetchView

 public function fetchView($fileName)
 {
     //ignores file name, just uses a simple include with template name
     $this->setScriptPath(Mage::getModuleDir('', 'Nofrills_Booklayout') . DS . 'design');
     return parent::fetchView($this->getTemplate());
 }
开发者ID:votanlean,项目名称:Magento-Pruebas,代码行数:6,代码来源:Template.php

示例8: fetchView

 public function fetchView($filename)
 {
     $this->setScriptPath(Mage::getModelDir('', 'Hatrangcorp_Youtubewidget') . DS . '');
     return parent::fetchView($this->getTemplate());
 }
开发者ID:shashankkanungo,项目名称:manhnv85-magento1410,代码行数:5,代码来源:Youtube.php


注:本文中的Mage_Core_Block_Template::fetchView方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。