Example #1
0
 /**
  *
  * @param Resultset $rs
  */
 private static function _getObject(Resultset $rs)
 {
     $ret = new self();
     while ($rs->NextRow()) {
         $ret->setSetting($rs->getKey(), $rs->getValue());
     }
     $ret->resetSignature();
     return $ret;
 }