我是 Social Engine 和 Zend 框架的新手。我想自定义我的应用程序的页眉和页脚。我的 default.tpl 包含以下代码。
</head>
<body id="global_page_<?php echo $request->getModuleName() . '-' . $request->getControllerName() . '-' . $request->getActionName() ?>">
<div id="global_header">
<?php echo $this->content('header') ?>
</div>
<div id='global_wrapper'>
<div id='global_content'>
<?php //echo $this->content('global-user', 'before') ?>
<?php echo $this->layout()->content ?>
<?php //echo $this->content('global-user', 'after') ?>
</div>
</div>
<div id="global_footer">
<?php echo $this->content('footer') ?>
</div>
</body>
</html>
现在我想在页脚部分加载一些小部件。任何人都可以建议我如何自定义<?php echo $this->content('footer') ?>
。以及页脚文件在我的应用程序中的位置?
提前致谢。