本文整理汇总了PHP中Mage_Core_Block_Template::setNameInLayout方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Core_Block_Template::setNameInLayout方法的具体用法?PHP Mage_Core_Block_Template::setNameInLayout怎么用?PHP Mage_Core_Block_Template::setNameInLayout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Core_Block_Template
的用法示例。
在下文中一共展示了Mage_Core_Block_Template::setNameInLayout方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testGetCacheTagsProductList
/**
* @test
*/
public function testGetCacheTagsProductList()
{
$productOne = new Mage_Catalog_Model_Product();
$productOne->setId(1);
$productTwo = new Mage_Catalog_Model_Product();
$productTwo->setId(2);
$block = new Mage_Core_Block_Template();
$block->setNameInLayout('product_list');
$block->setLoadedProductCollection(array($productOne, $productTwo));
$this->assertEquals(array('38a007151abe87cc01a5b6e9cc418e85286e2087', '65dd4967fe508e9ebad619a8c976beabf46588fe', '499ed21cb19c984d31e23b94a60730520afa8181'), $this->_blockHelper->getCacheTags($block));
}
示例2: testInsert
/**
* @covers Mage_Core_Block_Abstract::insert
* @see testGetSortedChildren()
*/
public function testInsert()
{
// invalid block from layout
$blockZero = new Mage_Core_Block_Template();
$blockZero->setLayout(Mage::app()->getLayout());
$this->assertInstanceOf('Mage_Core_Block_Abstract', $blockZero->insert(uniqid('block.')));
// anonymous block
$blockOne = new Mage_Core_Block_Template();
$blockOne->setIsAnonymous(true);
$this->_block->insert($blockOne);
$this->assertContains('.child0', $this->_block->getSortedChildren());
// block with alias, to the last position
$blockTwo = new Mage_Core_Block_Template();
$blockTwo->setNameInLayout('block.two');
$this->_block->insert($blockTwo, '', true, 'block_two');
$this->assertContains('block.two', $this->_block->getSortedChildren());
$this->assertSame($blockTwo, $this->_block->getChild('block_two'));
// unknown sibling, to the 1st position
$blockThree = new Mage_Core_Block_Template();
$blockThree->setNameInLayout('block.three');
$this->_block->insert($blockThree, 'wrong_sibling', false, 'block_three');
$this->assertContains('block.three', $this->_block->getSortedChildren());
$this->assertSame(0, array_search('block.three', $this->_block->getSortedChildren()));
$blockFour = new Mage_Core_Block_Template();
$blockFour->setNameInLayout('block.four');
$this->_block->insert($blockFour, 'wrong_sibling', true, 'block_four');
$this->assertContains('block.four', $this->_block->getSortedChildren());
$this->assertSame(3, array_search('block.four', $this->_block->getSortedChildren()));
}