コード例 #1
0
ファイル: roles.class.php プロジェクト: joly/web2project
 public function bind($hash)
 {
     if (!is_array($hash)) {
         return get_class($this) . "::bind failed";
     } else {
         $q = new DBQuery();
         $q->bindHashToObject($hash, $this);
         $q->clear();
         return null;
     }
 }
コード例 #2
0
ファイル: forums.class.php プロジェクト: joly/web2project
 public function bind($hash)
 {
     if (!is_array($hash)) {
         return 'CForumMessage::bind failed';
     } else {
         $q = new DBQuery();
         $q->bindHashToObject($hash, $this);
         $q->clear();
         return null;
     }
 }