public function toObject($dbObject = null, $skip = array())
 {
     if (!$dbObject) {
         $dbObject = new kEventFieldCondition();
     }
     return parent::toObject($dbObject, $skip);
 }
 public function toObject($dbObject = null, $skip = array())
 {
     if (!$dbObject) {
         $dbObject = new kValidateActiveEdgeCondition();
     }
     return parent::toObject($dbObject, $skip);
 }
 public function toObject($dbObject = null, $skip = array())
 {
     if (!$dbObject) {
         $dbObject = new kDeliveryProfileCondition();
     }
     return parent::toObject($dbObject, $skip);
 }
 public function toObject($dbObject = null, $skip = array())
 {
     if (!$dbObject) {
         $dbObject = new kAuthenticatedCondition();
     }
     return parent::toObject($dbObject, $skip);
 }
 public function toObject($dbObject = null, $skip = array())
 {
     if (!$dbObject) {
         $dbObject = new kAssetPropertiesCompareCondition();
     }
     $dbObject = parent::toObject($dbObject, $skip);
     if (!is_null($this->properties)) {
         $properties = array();
         foreach ($this->properties as $keyValue) {
             $properties[$keyValue->key] = $keyValue->value;
         }
         $dbObject->setProperties($properties);
     }
     return $dbObject;
 }
Exemplo n.º 6
0
 public function toObject($dbObject = null, $skip = array())
 {
     /* @var $dbObject kCompareCondition */
     $dbObject->setValue($this->value->toObject());
     return parent::toObject($dbObject, $skip);
 }