本文整理汇总了PHP中Mage_Core_Model_Layout::_getBlockInstance方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Core_Model_Layout::_getBlockInstance方法的具体用法?PHP Mage_Core_Model_Layout::_getBlockInstance怎么用?PHP Mage_Core_Model_Layout::_getBlockInstance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Core_Model_Layout
的用法示例。
在下文中一共展示了Mage_Core_Model_Layout::_getBlockInstance方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _getBlockInstance
/**
* Overriden for possibility of replacing a block by mock object
* (non-PHPdoc)
* @see Mage_Core_Model_Layout::_getBlockInstance()
*/
protected function _getBlockInstance($block, array $attributes = array())
{
if (!isset($this->_replaceBlockCreation[$block])) {
return parent::_getBlockInstance($block, $attributes);
}
return $this->_replaceBlockCreation[$block];
}
示例2: _getBlockInstance
protected function _getBlockInstance($block, array $attributes = array())
{
if (version_compare(Mage::getVersion(), '1.3.1', '>')) {
return parent::_getBlockInstance($block, $attributes);
}
if (is_string($block)) {
if (strpos($block, '/') !== false) {
if (!($block = Mage::getConfig()->getBlockClassName($block))) {
Mage::throwException(Mage::helper('core')->__('Invalid block type: %s', $block));
}
}
$fileName = mageFindClassFile($block);
if ($fileName !== false) {
if (!class_exists($block, false)) {
include_once $fileName;
}
$block = new $block($attributes);
}
}
if (!$block instanceof Mage_Core_Block_Abstract) {
Mage::throwException(Mage::helper('core')->__('Invalid block type: %s', $block));
}
return $block;
}
示例3: _getBlockInstance
/**
* Makes it possible to specify special options, after the block is created
*
* @param string $block
* @param array $attributes
* @return Mage_Core_Block_Abstract
*/
protected function _getBlockInstance($block, array $attributes = array())
{
$block = parent::_getBlockInstance($block, $attributes);
if ($block && isset($attributes['_ecomdev_system_option'])) {
if (isset($attributes['_ecomdev_system_option']['is_anonymous'])) {
$block->setIsAnonymous($attributes['_ecomdev_system_option']['is_anonymous']);
if (isset($attributes['_ecomdev_system_option']['anon_suffix'])) {
$block->setAnonSuffix($attributes['_ecomdev_system_option']['anon_suffix']);
}
}
}
return $block;
}