本文整理汇总了PHP中Magento\Framework\View\Element\Template类的典型用法代码示例。如果您正苦于以下问题:PHP Template类的具体用法?PHP Template怎么用?PHP Template使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Template类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testSetTemplateContext
public function testSetTemplateContext()
{
$template = 'themedir/template.phtml';
$context = new \Magento\Framework\DataObject();
$this->_validator->expects($this->once())->method('isValid')->with($template)->will($this->returnValue(true));
$this->_templateEngine->expects($this->once())->method('render')->with($context);
$this->_block->setTemplateContext($context);
$this->_block->fetchView($template);
}
示例2: afterToHtml
/**
* Wrap template with the debugging hints in comments
*
* @param Template $subject
* @param string $result
*
* @return string
*/
public function afterToHtml(Template $subject, $result)
{
if ($this->scopeConfig->getValue(self::XML_PATH_DEBUG_TEMPLATE_HINTS, ScopeInterface::SCOPE_STORE) && $this->appState->getMode() === State::MODE_DEVELOPER) {
$name = $subject->getNameInLayout();
$template = $subject->getTemplateFile();
$class = get_class($subject);
$result = "<!-- BEGIN {$name} using {$template} \n" . $class . '-->' . $result . "<!-- END {$name} using {$template} -->";
}
return $result;
}
示例3: __construct
/**
* @param \Magento\Framework\View\Element\Template\Context $context
* @param \Magento\Framework\Registry $registry
* @param \Magento\CatalogInventory\Api\StockStateInterface $stockState
* @param \Magento\CatalogInventory\Api\StockRegistryInterface $stockRegistry
* @param array $data
*/
public function __construct(\Magento\Framework\View\Element\Template\Context $context, \Magento\Framework\Registry $registry, \Magento\CatalogInventory\Api\StockStateInterface $stockState, \Magento\CatalogInventory\Api\StockRegistryInterface $stockRegistry, array $data = [])
{
$this->_coreRegistry = $registry;
$this->stockState = $stockState;
$this->stockRegistry = $stockRegistry;
parent::__construct($context, $data);
}
示例4: _toHtml
/**
* Render block HTML
*
* @return string
*/
protected function _toHtml()
{
if (false != $this->getTemplate()) {
return parent::_toHtml();
}
return '<li><a ' . $this->getLinkAttributes() . ' >' . $this->escapeHtml($this->getLabel()) . '</a></li>';
}
示例5: __construct
/**
* Initialize dependencies
*
* @param \Magento\Framework\View\Element\Template\Context $context
* @param \Magento\Store\Model\StoreFactory $storeFactory
* @param \Magento\Framework\Registry $coreRegistry
* @param \Magento\Tax\Service\V1\TaxRateServiceInterface $taxRateService
* @param array $data
*/
public function __construct(\Magento\Framework\View\Element\Template\Context $context, \Magento\Store\Model\StoreFactory $storeFactory, \Magento\Framework\Registry $coreRegistry, \Magento\Tax\Service\V1\TaxRateServiceInterface $taxRateService, array $data = array())
{
$this->_coreRegistry = $coreRegistry;
$this->_taxRateService = $taxRateService;
$this->_storeFactory = $storeFactory;
parent::__construct($context, $data);
}
示例6: __construct
/**
* @param \Magento\Framework\View\Element\Template\Context $context
* @param \Magento\Framework\Filter\Input\MaliciousCode $maliciousCode
* @param PriceCurrencyInterface $priceCurrency
* @param \Magento\Catalog\Helper\Image $imageHelper
* @param array $data
*/
public function __construct(\Magento\Framework\View\Element\Template\Context $context, \Magento\Framework\Filter\Input\MaliciousCode $maliciousCode, PriceCurrencyInterface $priceCurrency, \Magento\Catalog\Helper\Image $imageHelper, array $data = [])
{
$this->imageHelper = $imageHelper;
$this->priceCurrency = $priceCurrency;
$this->_maliciousCode = $maliciousCode;
parent::__construct($context, $data);
}
示例7: __construct
/**
* @param \Magento\Framework\View\Element\Template\Context $context
* @param \Magento\Wishlist\Helper\Data $wishlistHelper
* @param \Magento\Framework\App\Rss\UrlBuilderInterface $rssUrlBuilder
* @param \Magento\Framework\Url\EncoderInterface $urlEncoder
* @param array $data
*/
public function __construct(\Magento\Framework\View\Element\Template\Context $context, \Magento\Wishlist\Helper\Data $wishlistHelper, \Magento\Framework\App\Rss\UrlBuilderInterface $rssUrlBuilder, \Magento\Framework\Url\EncoderInterface $urlEncoder, array $data = [])
{
parent::__construct($context, $data);
$this->wishlistHelper = $wishlistHelper;
$this->rssUrlBuilder = $rssUrlBuilder;
$this->urlEncoder = $urlEncoder;
}
示例8: __construct
/**
* PHP Constructor
*
* @param \Magento\Framework\View\Element\Template\Context $context App context
* @param \Magento\Framework\Json\Helper\Data $jsonHelper The Magento's JSON Helper
* @param \Smile\ElasticsuiteTracker\Helper\Data $trackerHelper The Smile Tracker helper
* @param \Magento\Framework\Registry $registry The Magento registry
* @param array $data additional datas
*/
public function __construct(\Magento\Framework\View\Element\Template\Context $context, \Magento\Framework\Json\Helper\Data $jsonHelper, \Smile\ElasticsuiteTracker\Helper\Data $trackerHelper, \Magento\Framework\Registry $registry, array $data = [])
{
parent::__construct($context, $data);
$this->jsonHelper = $jsonHelper;
$this->trackerHelper = $trackerHelper;
$this->registry = $registry;
}
示例9: __construct
/**
* @param \Magento\Framework\View\Element\Template\Context $context
* @param \Magento\Sales\Model\OrderFactory $orderFactory
* @param array $data
* @codeCoverageIgnore
*/
public function __construct(\Magento\Framework\View\Element\Template\Context $context, \Magento\Sales\Model\OrderFactory $orderFactory, \Magento\Catalog\Model\Session $catalogSession, \Magento\Checkout\Model\Session $checkoutSession, array $data = [])
{
$this->_orderFactory = $orderFactory;
$this->_catalogSession = $catalogSession;
$this->_checkoutSession = $checkoutSession;
parent::__construct($context, $data);
}
示例10: __construct
/**
* @param \Magento\Framework\View\Element\Template\Context $context
* @param \Magento\Customer\Helper\Address $addressHelper
* @param CustomerMetadataInterface $customerMetadata
* @param array $data
*/
public function __construct(\Magento\Framework\View\Element\Template\Context $context, \Magento\Customer\Helper\Address $addressHelper, CustomerMetadataInterface $customerMetadata, array $data = [])
{
$this->_addressHelper = $addressHelper;
$this->customerMetadata = $customerMetadata;
parent::__construct($context, $data);
$this->_isScopePrivate = true;
}
示例11: __construct
public function __construct(\Dotdigitalgroup\Email\Helper\Data $helper, \Magento\Framework\ObjectManagerInterface $objectManagerInterface, \Magento\Backend\Block\Template\Context $context)
{
$data = [];
$this->_helper = $helper;
$this->_objectManager = $objectManagerInterface;
parent::__construct($context, $data);
}
示例12: __construct
/**
* @param \Magento\Framework\View\Element\Template\Context $context
* @param \Magento\Customer\Model\Session $customerSession
* @param \Magento\Checkout\Model\Session $checkoutSession
* @param array $data
*/
public function __construct(\Magento\Framework\View\Element\Template\Context $context, \Magento\Customer\Model\Session $customerSession, \Magento\Checkout\Model\Session $checkoutSession, array $data = [])
{
$this->_customerSession = $customerSession;
$this->_checkoutSession = $checkoutSession;
parent::__construct($context, $data);
$this->_isScopePrivate = true;
}
示例13: _toHtml
/**
* Render tag manager script
*
* @return string
*/
protected function _toHtml()
{
if ($this->_cookieHelper->isUserNotAllowSaveCookie() || !$this->_gtmHelper->isEnabled()) {
return '';
}
return parent::_toHtml();
}
示例14: _toHtml
/**
* Render tag manager JS
*
* @return string
*/
protected function _toHtml()
{
if (!$this->_gtmHelper->isEnabled()) {
return '';
}
return parent::_toHtml();
}
示例15: _construct
protected function _construct()
{
parent::_construct();
// CSRF protection
$this->_customerSession->setFacebookCsrf($csrf = md5(uniqid(rand(), true)));
$this->_clientFacebook->setState($csrf);
}