本文整理汇总了PHP中ContentModel::Get_Par_Id方法的典型用法代码示例。如果您正苦于以下问题:PHP ContentModel::Get_Par_Id方法的具体用法?PHP ContentModel::Get_Par_Id怎么用?PHP ContentModel::Get_Par_Id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ContentModel
的用法示例。
在下文中一共展示了ContentModel::Get_Par_Id方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Show_Month
private function Show_Month()
{
global $templates;
$content = new ContentModel();
$content->id = $_GET['id'];
$parid = $content->Get_Par_Id();
$content->nav = $parid->nav;
//列出本月推荐
$object_rec = $content->Month_Rec();
if ($object_rec) {
foreach ($object_rec as $value) {
$value->title = Tool::Sub_Str($value->title, 15);
$value->date = date('m-d', strtotime($value->date));
//将时间格式转换一下
}
}
$templates->assgin('Month_Rec', $object_rec);
//注入模板,显示本月推荐
//列出本月热点
$object_hot = $content->Month_Hot();
if ($object_hot) {
foreach ($object_hot as $value) {
$value->title = Tool::Sub_Str($value->title, 15);
$value->date = date('m-d', strtotime($value->date));
//将时间格式转换一下
}
}
$templates->assgin('Month_Hot', $object_hot);
//注入模板,显示本月热点
//列出本月图文(含有图片的wenzha)
$object_pic = $content->Month_Pic();
if ($object_pic) {
foreach ($object_pic as $value) {
$value->title = Tool::Sub_Str($value->title, 15);
$value->date = date('m-d', strtotime($value->date));
//将时间格式转换一下
}
}
$templates->assgin('Month_pic', $object_pic);
//注入模板,显示本月热点
}