我想通过php检查一个页面是否是Magento中的cms_page。我需要针对cms页面的不同面包屑,所以我试着用条件,但我不知道如何或在哪里看。 到目前为止,这是我的breadcrumbs.phtml。
<?php if(this is a cms page): ?>
<p>some content</p>
<?php else: ?>
<?php if($crumbs && is_array($crumbs)): ?>
<div class="breadcrumbs">
<ul>
<?php $charsges = 0; ?>
<?php foreach($crumbs as $_crumbName=>$_crumbInfo): ?>
<?php
$charsges = strlen($_crumbInfo['label']) + $charsges;
if($charsges > 40){
$chars = 18;
if(strlen($_crumbInfo['label']) > $chars){
$_crumbInfo['label'] = substr($_crumbInfo['label'], 0, $chars);
$_crumbInfo['label'] = $_crumbInfo['label'].'..';
}
}
?>
<li class="<?php echo $_crumbName ?>">
<?php if($_crumbInfo['link']): ?>
<a href="<?php echo $_crumbInfo['link'] ?>" title="<?php echo $this->htmlEscape($_crumbInfo['title']) ?>"><?php echo $this->htmlEscape($_crumbInfo['label']) ?></a>
<?php elseif($_crumbInfo['last']): ?>
<strong><?php echo $this->htmlEscape($_crumbInfo['label']) ?></strong>
<?php else: ?>
<?php echo $this->htmlEscape($_crumbInfo['label']) ?>
<?php endif; ?>
<?php if(!$_crumbInfo['last']): ?>
<span> > </span>
<?php endif; ?>
</li>
<?php endforeach; ?>
</ul>
</div>
<?php endif; ?>
迎接rito
答案 0 :(得分:29)
以下内容应该为您提供您想要的内容
//from a block or phtml script
$this->getRequest()->getModuleName()
当这返回字符串'cms'时,您就在CMS页面上。
当Magento的前端和管理路由器无法在您的URL上找到匹配项时,CMS路由器将接管。如果CMS路由器找到匹配项(基于您已设置的CMS页面),它会将请求移交给cms模块和Mage_Cms_IndexController控制器。