?
Path : /home/admin/domains/happytokorea.com/public_html/backend/modules/content/ |
Current File : /home/admin/domains/happytokorea.com/public_html/backend/modules/content/action.php |
<?php require_once('com_article.php'); require_once('mod_article.php'); require_once('mod_article_n.php'); require_once('com_topic.php'); $topic=new topic(); $article=new article(); $article_n=new article_n(); $Html=new Html(); echo $Html->menu(); if($_GET['msg']!=""){echo msg_feedback($_GET['msg']);} switch($_GET['ac']){ case edit;{ echo $Html->Edit(); break; } default: $header_name=Array( 'ContentName'=> "ชื่อ", 'CatID'=> "ประเภท", ); $header_td_width=Array('57%','19%'); $orderby=$_GET['orderby']; $sort=$_GET['sort']; if($sort==""){$sort="Max2Min";} $chksort=$_GET['chksort']; $link="admin.php?mod=content"; $topic->setLimit(20); $topic->setPage(); $topic->total_links(9); echo "<div style=\"text-align:left;\">"; if ($_SESSION["la"] == 1){ echo $topic->listData($table='contents',$condition='where CatID!=135',$orderby,$sort,$chksort,$header_name,$header_td_width,$link); }else{ echo $topic->listData($table='contents_en',$condition='',$orderby,$sort,$chksort,$header_name,$header_td_width,$link); } echo "</div>"; break; case idx_list: $header_name=Array( 'contents_photo.picture'=> "รูปภาพ", 'contents.ContentName'=> "ชื่อ บทความ", ); $header_td_width=Array('20%','80%'); $orderby=$_GET['orderby']; $sort=$_GET['sort']; if($sort==""){$sort="Max2Min";} $chksort=$_GET['chksort']; $link="admin.php?mod=content&ac=idx_list"; $topic->setLimit(20); $topic->setPage(); $topic->total_links(9); echo "<div style=\"text-align:left;\">"; echo $topic->listData_idx_list($table=' contents INNER JOIN contents_recommend ON (contents.ContentID = contents_recommend.ContentID) INNER JOIN contents_photo ON (contents.ContentID = contents_photo.ContentID) order by contents_photo.id_p DESC ',$condition='',$orderby,$sort,$chksort,$header_name,$header_td_width,$link); echo "</div>"; break; case new_data;{ require_once('com_new_topic.php'); break; } case edit_data;{ require_once('com_edit_topic.php'); break; } case add_data;{ $article_n->add_topic(); break; } case add_data_con;{ $article_n->add_data_con(); break; } case delete_photo_gallery;{ $article_n->delete_photo_gallery(); break; } case edit_data_con;{ $article_n->edit_data_con(); break; } case edit_data_do;{ $topic_id=$_POST['topic_id']; $article_n->edit_topic($topic_id); break; } case del_data;{ $article_n->del_topic(); break; } case de_photo;{ $article_n->de_photo(); break; } case de_pdf;{ $article_n->de_pdf(); break; } case view_cat;{ require_once('manage_group.php'); break; } }//end switch ?>