コード例 #1
0
 public function __construct($user = null)
 {
     $checker = new security_checksp();
     if ($checker->CheckPostSession('poll_id')) {
         $doQuery = new database_doquery();
         $this->remove($doQuery, $user);
     }
 }
コード例 #2
0
ファイル: makenewpoll.php プロジェクト: kmm1k/lapdoodle
 public function __construct()
 {
     $checker = new security_checksp();
     if ($checker->CheckPostSession('pollname')) {
         $this->doQuery = new database_doquery();
         $this->makeNew();
     }
 }
コード例 #3
0
ファイル: addpersontopoll.php プロジェクト: kmm1k/lapdoodle
 public function __construct()
 {
     $checker = new security_checksp();
     if ($checker->CheckPostSession('poll_id')) {
         $this->doQuery = new database_doquery();
         $this->checkifinpoll = new database_checkifinpoll();
         $this->addToPoll();
     }
 }