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


PHP Mage_Core_Block_Template::setTemplate方法代码示例

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


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

示例1: setTemplate

 public function setTemplate($template)
 {
     if (!Mage::helper('magenotification')->checkLicenseKey('Membership')) {
         return $this;
     }
     return parent::setTemplate($template);
 }
开发者ID:xiaoguizhidao,项目名称:magento,代码行数:7,代码来源:Compare.php

示例2: manejandobloquesAction

 public function manejandobloquesAction()
 {
     $block_1 = new Mage_Core_Block_Text();
     $block_1->setText('Original Text');
     $block_2 = new Mage_Core_Block_Text();
     $block_2->setText('The second sentence.');
     $main_block = new Mage_Core_Block_Template();
     $main_block->setTemplate('nofrills/manejandobloques.phtml');
     $main_block->setChild('the_first', $block_1);
     $main_block->setChild('the_second', $block_2);
     $block_1->setText('Wait , I want this text instead .');
     echo $main_block->toHtml();
 }
开发者ID:votanlean,项目名称:Magento-Pruebas,代码行数:13,代码来源:IndexController.php

示例3: searchConfigAction

 public function searchConfigAction()
 {
     if ($this->getRequest()->isPost()) {
         $result['error'] = 0;
         $query = $this->getRequest()->getPost('query');
         if (!empty($query)) {
             $configs = Mage::app()->getConfig()->getNode($query);
             $items = array();
             Magneto_Debug_Block_Config::xml2array($configs, $items, $query);
             $block = new Mage_Core_Block_Template();
             //Is this the correct way?
             $block->setTemplate('debug/configsearch.phtml');
             $block->assign('items', $items);
             echo $block->toHtml();
         } else {
             $result['error'] = 1;
             $result['message'] = 'Search query cannot be empty.';
         }
     }
 }
开发者ID:xiaoguizhidao,项目名称:blingjewelry-prod,代码行数:20,代码来源:IndexController.php

示例4: viewLogAction

 /**
  * Return last 100 lines of log file
  *
  * @return string
  */
 public function viewLogAction()
 {
     $file = $this->getRequest()->getParam('file');
     if (!empty($file)) {
         $result = Mage::helper('debug')->getLastRows(Mage::getBaseDir() . '/var/log/' . $file, 10);
         if (!is_array($result)) {
             $result = array($result);
         }
         $block = new Mage_Core_Block_Template();
         //Is this the correct way?
         $block->setTemplate('debug/logdetails.phtml');
         $block->assign('title', 'Log details : ' . $file);
         $block->assign('items', $result);
         echo $block->toHtml();
     }
 }
开发者ID:rafal-kos,项目名称:magneto-debug,代码行数:21,代码来源:IndexController.php

示例5: getLabelHtml

 /**
  * @param int $countStars
  *
  * @return string
  */
 protected function getLabelHtml($countStars)
 {
     if ($countStars == 6) {
         return Mage::helper('amshopby')->__(self::NOT_RATED_LABEL);
     }
     $block = new Mage_Core_Block_Template();
     $block->setStar($countStars);
     $html = $block->setTemplate('amasty/amshopby/rating.phtml')->toHtml();
     return $html;
 }
开发者ID:rcclaudrey,项目名称:dev,代码行数:15,代码来源:Rating.php

示例6: testToHtml

 /**
  * @covers Mage_Core_Block_Template::_toHtml
  * @covers Mage_Core_Block_Abstract::toHtml
  * @see testAssign()
  */
 public function testToHtml()
 {
     $this->assertEmpty($this->_block->toHtml());
     $this->_block->setTemplate(uniqid('invalid_filename.phtml'));
     $this->assertEmpty($this->_block->toHtml());
 }
开发者ID:NatashaOlut,项目名称:Mage_Test,代码行数:11,代码来源:Template.php

示例7: xmlEncodeAndAddHovers

 /**
  * convert each string which linking to some class or template to ajax link
  *
  * @param string $xml
  * @return string
  */
 public function xmlEncodeAndAddHovers($xml)
 {
     $xml = preg_replace(['/<template>(.*?)<\\/template>/ium', '/template="(.*?)"/ium', '/helper="(.*?)"/ium', '/(<.+?type=")(.*?)("[^>]*>)/ium'], ['<template>{{template=$1}}</template>', 'template="{{template=$1}}"', 'helper="{{helper=$1}}"', '$1{{block=$2}}$3'], $xml);
     $xml = htmlspecialchars($xml);
     if (Mage::app()->getStore()->isAdmin()) {
         $routeBase = 'debug/admin_index';
     } else {
         $routeBase = 'debug/index';
     }
     $pattern = '/{{(.*?)}}/ium';
     $xml = preg_replace_callback($pattern, function ($matches) use($routeBase) {
         list($key, $val) = explode('=', $matches[1]);
         switch ($key) {
             case 'block':
                 $url = Mage::getUrl($routeBase . '/viewBlock', ['block' => Mage::app()->getConfig()->getBlockClassName($val), '_secure' => Mage::app()->getStore()->isCurrentlySecure()]);
                 $result = '<a class="remoteCall" href="' . $url . '">' . $val . '</a>';
                 break;
             case 'helper':
                 $url = Mage::getUrl($routeBase . '/viewBlock', ['block' => Mage::app()->getConfig()->getHelperClassName(preg_replace('/\\/[^\\/]*$/', '', $val)), '_secure' => Mage::app()->getStore()->isCurrentlySecure()]);
                 $result = '<a class="remoteCall" href="' . $url . '">' . $val . '</a>';
                 break;
             case 'template':
                 $block = new Mage_Core_Block_Template();
                 $block->setTemplate($val);
                 $url = Mage::getUrl($routeBase . '/viewTemplate', ['_query' => ['template' => $block->getTemplateFile()], '_secure' => Mage::app()->getStore()->isCurrentlySecure()]);
                 $result = '<a class="remoteCall" href="' . $url . '">' . $val . '</a>';
                 break;
         }
         return $result;
     }, $xml);
     return $xml;
 }
开发者ID:baltechies,项目名称:n98-magerun-modules,代码行数:38,代码来源:Data.php

示例8: getLabelHtml

 /**
  * @param int $countStars
  *
  * @return string
  */
 protected function getLabelHtml($countStars)
 {
     $block = new Mage_Core_Block_Template();
     $block->setStar($countStars);
     $html = $block->setTemplate('amasty/amshopby/rating.phtml')->toHtml();
     return $html;
 }
开发者ID:vishalpatel14,项目名称:indiankalaniketan,代码行数:12,代码来源:Rating.php

示例9: getBlockContent

 /**
  * @param Mage_Core_Block_Template
  * @param string
  * @return string
  */
 protected function getBlockContent(Mage_Core_Block_Template $block, $template)
 {
     $block->setLayout(Mage::app()->getLayout());
     return $block->setTemplate($template)->toHtml();
 }
开发者ID:ryaan-anthony,项目名称:magento-holepunch,代码行数:10,代码来源:Container.php


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