本文整理汇总了PHP中content::item方法的典型用法代码示例。如果您正苦于以下问题:PHP content::item方法的具体用法?PHP content::item怎么用?PHP content::item使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类content
的用法示例。
在下文中一共展示了content::item方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _
public static function _()
{
if(render::$type==RENDER_TYPE_SILENT)
{
//not implemented yet: common silent answers
return;
}
if(render::$type!=RENDER_TYPE_NORMAL)return;
if(content::item("nolayout"))
{
self::_html1Header();
$nameForm=self::$class."-".self::$c->config("","elNameForm");
$nameAction=self::$class."-".self::$c->config("","elNameAction");
?>
<form id="<?php
echo $nameForm;
?>
" action="" method="post" enctype="multipart/form-data" onsubmit="<?php
echo self::$class . ".";
?>
onSubmit()">
<input type="hidden" id="<?php
echo $nameAction;
?>
" name="<?php
echo $nameAction;
?>
" value="" />
<script type="text/javascript"><?php
echo self::$class . ".";
?>
_init();</script>
<?
self::_spot(5,false);
self::_spot(self::$config["contentSpot"]);
self::_spot(21,false);
?>
</form>
<?
self::_html2Footer();
}
else
{
self::_page1Header();
self::_page2Center();
self::_page3Footer();
}
}
示例2: content
public function content($prop)
{
return content::item($prop);
}