Example #1
0
 /**
  * Cnews::up_position_homepage_top()
  * 
  * @param mixed $id
  * @return
  */
 function up_position_homepage_top($id)
 {
     $o = new article();
     $o->get_by_id($id);
     if (!$o->exists()) {
         show_404("Không tìm thấy");
     }
     if ($o->home_hot == 1) {
         $o->up_position_home_top();
     }
     redirect($this->admin . 'cnews/list_homepage/');
 }