计算在joomla中标记为“在索引页面上显示”的文章

时间:2012-11-29 18:07:03

标签: php joomla2.5

我希望能够预测<jdoc:include type="component" />何时没有返回任何内容。

这样的事情:

<?php if( count(<jdoc:include type="component" />)>=1 ) : ?> 
 <jdoc:include type="component" />
<?php else :?>
 Sorry No Content
<?php endif ; ?>

搜索到所有内容,但找不到任何与之相关的内容。对不起,如果这是补救措施。

1 个答案:

答案 0 :(得分:0)

我有这个片段用于测试组件加载错误...不确定是否可能适合你

<?php if ($this->getBuffer('message')) : ?>  
 <div class="error">  
<h2> Message </h2>
<jdoc:include type="message" />
</div>
<?php endif; ?>
<jdoc:include type="component" />
祝你好运!