예제 #1
0
파일: comments.php 프로젝트: maminu/JSPHP1
 public function __construct()
 {
     parent::__construct();
     if (!empty($_GET['action']) && $_GET['action'] == 'delete') {
         $this->deletecomment();
     } else {
         $this->listcomments();
     }
 }
예제 #2
0
파일: posts.php 프로젝트: maminu/JSPHP1
 public function __construct()
 {
     parent::__construct();
     if (!empty($_GET['action'])) {
         switch ($_GET['action']) {
             case 'create':
                 $this->addpost();
                 break;
             default:
                 $this->listposts();
                 break;
             case 'save':
                 $this->savepost();
                 break;
         }
     } else {
         $this->listposts();
     }
 }
예제 #3
0
파일: admin.php 프로젝트: maminu/JSPHP1
 public function __construct()
 {
     parent::__construct();
 }