什么是phpfox中的{notification}?

时间:2014-03-21 09:15:41

标签: phpfox

有人可以向我解释为什么我们在phpfox的代码中使用这个指令{notification}吗?例如,在此代码中,我们使用{notification}

{if Phpfox::isUser() && !Phpfox::getUserBy('profile_page_id')}
getFullControllerName() == 'appletjava.index'} style="float: right;position: absolute;right: 199px;top: 7px;left:auto;" {/if}>  
{notification}
{/if}

我们可以找到其他使用{}的关键字我想知道它的意思。

1 个答案:

答案 0 :(得分:1)

phpfox模板中的所有{something}都被替换为php代码"编译"时间。要了解所有可能性和替换是什么打开文件/include/library/phpfox/template/cache.class.php

对于这个具体的问题,你会在第1261行找到它并将其替换为:

return '<?php Phpfox::getBlock(\'core.template-notification\'); ?>';