Ejemplo n.º 1
0
 /**
  * @todo refactor
  */
 public function bind($hash)
 {
     if (!is_array($hash)) {
         return 'w2p_System_Preferences::bind failed';
     } else {
         $q = new w2p_Database_Query();
         $q->bindHashToObject($hash, $this);
         return null;
     }
 }
Ejemplo n.º 2
0
 public function bind($hash)
 {
     if (!is_array($hash)) {
         return get_class($this) . "::bind failed";
     } else {
         $q = new w2p_Database_Query();
         $q->bindHashToObject($hash, $this);
         $q->clear();
         return null;
     }
 }