本文整理汇总了PHP中article::set_home方法的典型用法代码示例。如果您正苦于以下问题:PHP article::set_home方法的具体用法?PHP article::set_home怎么用?PHP article::set_home使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类article
的用法示例。
在下文中一共展示了article::set_home方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: article
/**
* Cnews::add_home()
*
* @param integer $id
* @param mixed $value
* @return
*/
function add_home($id = 0, $value)
{
if ($id != 0) {
$news = new article($id);
if (!$news->exists()) {
show_404();
}
if ($value == 1) {
$news->set_home();
} else {
$news->unset_home();
}
} else {
$arr = $this->input->post('checkinput');
foreach ($arr as $row) {
$news = new article($row);
if ($value == 1) {
$news->set_home();
} else {
$news->unset_home();
}
$news->clear();
}
}
if ($value == 1) {
flash_message('success', "Thêm vào tiêu điểm thành công.");
} else {
flash_message('info', "Remove khỏi danh sách tiêu điểm .");
}
redirect($this->admin . 'cnews/list_homepage');
}