本文整理汇总了PHP中Mage_Core_Block_Abstract::getCacheKeyInfo方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Core_Block_Abstract::getCacheKeyInfo方法的具体用法?PHP Mage_Core_Block_Abstract::getCacheKeyInfo怎么用?PHP Mage_Core_Block_Abstract::getCacheKeyInfo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Core_Block_Abstract
的用法示例。
在下文中一共展示了Mage_Core_Block_Abstract::getCacheKeyInfo方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getCacheKeyInfo
/**
* {@inheritdoc}
*/
public function getCacheKeyInfo()
{
$info = parent::getCacheKeyInfo();
$blockId = $this->getBlockId();
if ($blockId) {
$info[] = 'CMSBLOCK_' . $blockId;
}
return $info;
}
示例2: getCacheKeyInfo
/**
* Retrieve values of properties that unambiguously identify unique content
*
* @return array
*/
public function getCacheKeyInfo()
{
$blockId = $this->getBlockId();
if ($blockId) {
$result = array('CMS_BLOCK', $blockId, Mage::app()->getStore()->getCode());
} else {
$result = parent::getCacheKeyInfo();
}
return $result;
}
示例3: _getBasicKeys
/**
* Get generic key array including handle etc, that all blocks use
*
* @param Mage_Core_Block_Abstract $block
* @return array
*/
protected function _getBasicKeys(Mage_Core_Block_Abstract $block)
{
$keys = $block->getCacheKeyInfo();
if (!is_array($keys)) {
$keys = array();
}
$keys[] = Mage::getSingleton('customer/session')->getCustomer()->getGroupId();
$keys[] = Mage::app()->getStore()->getCurrentCurrencyCode();
$keys[] = $block->getLayout()->getUpdate()->getCacheId();
$keys[] = 'SSL_' . intval(!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') . '_';
return $keys;
}
示例4: emulateAccountLinks
/**
* Emulate 'account links' block with persistent data
*
* @param Mage_Core_Block_Abstract $block
*/
public function emulateAccountLinks($block)
{
$this->_applyAccountLinksPersistentData();
$block->getCacheKeyInfo();
$block->addLink(Mage::helper('persistent')->getPersistentName(), Mage::helper('persistent')->getUnsetCookieUrl(), Mage::helper('persistent')->getPersistentName(), false, array(), 110);
$block->removeLinkByUrl(Mage::helper('customer')->getRegisterUrl());
$block->removeLinkByUrl(Mage::helper('customer')->getLoginUrl());
}
示例5: getCacheKeyInfo
/**
* {@inheritdoc}
*/
public function getCacheKeyInfo()
{
$info = parent::getCacheKeyInfo();
$pageId = $this->getPageId();
if ($pageId) {
$info[] = 'CMSPAGE_' . $pageId;
}
return $info;
}
示例6: emulateAccountLinks
/**
* Emulate 'account links' block with persistent data
*
* @param Mage_Core_Block_Abstract $block
*/
public function emulateAccountLinks($block)
{
$this->_applyAccountLinksPersistentData();
$block->getCacheKeyInfo();
$helper = Mage::helper('Mage_Persistent_Helper_Data');
$block->addLink($helper->getPersistentName(), $helper->getUnsetCookieUrl(), $helper->getPersistentName(), false, array(), 110);
$customerHelper = Mage::helper('Mage_Customer_Helper_Data');
$block->removeLinkByUrl($customerHelper->getRegisterUrl());
$block->removeLinkByUrl($customerHelper->getLoginUrl());
}