/** * Implementation for 'GET' method for Rest API * * @param mixed $lexTopic, $lexKey Primary key * * @return array $result Returns array within multiple records or a single record depending if * a single selection was requested passing id(s) as param */ protected function get($lexTopic = null, $lexKey = null) { $result = array(); try { $noArguments = true; $argumentList = func_get_args(); foreach ($argumentList as $arg) { if (!is_null($arg)) { $noArguments = false; } } if ($noArguments) { $criteria = new Criteria('workflow'); $criteria->addSelectColumn(LexicoPeer::LEX_TOPIC); $criteria->addSelectColumn(LexicoPeer::LEX_KEY); $criteria->addSelectColumn(LexicoPeer::LEX_VALUE); $criteria->addSelectColumn(LexicoPeer::LEX_CAPTION); $dataset = AppEventPeer::doSelectRS($criteria); $dataset->setFetchmode(ResultSet::FETCHMODE_ASSOC); while ($dataset->next()) { $result[] = $dataset->getRow(); } } else { $record = LexicoPeer::retrieveByPK($lexTopic, $lexKey); if ($record) { $result = $record->toArray(BasePeer::TYPE_FIELDNAME); } else { $paramValues = ""; foreach ($argumentList as $arg) { $paramValues .= strlen($paramValues) ? ', ' : ''; if (!is_null($arg)) { $paramValues .= "{$arg}"; } else { $paramValues .= "NULL"; } } throw new RestException(417, "table Lexico ({$paramValues})"); } } } catch (RestException $e) { throw new RestException($e->getCode(), $e->getMessage()); } catch (Exception $e) { throw new RestException(412, $e->getMessage()); } return $result; }
/** * Populates the object using an array. * * This is particularly useful when populating an object from one of the * request arrays (e.g. $_POST). This method goes through the column * names, checking to see whether a matching key exists in populated * array. If so the setByName() method is called for that column. * * You can specify the key type of the array by additionally passing one * of the class type constants TYPE_PHPNAME, TYPE_COLNAME, TYPE_FIELDNAME, * TYPE_NUM. The default key type is the column's phpname (e.g. 'authorId') * * @param array $arr An array to populate the object from. * @param string $keyType The type of keys the array uses. * @return void */ public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME) { $keys = LexicoPeer::getFieldNames($keyType); if (array_key_exists($keys[0], $arr)) { $this->setLexTopic($arr[$keys[0]]); } if (array_key_exists($keys[1], $arr)) { $this->setLexKey($arr[$keys[1]]); } if (array_key_exists($keys[2], $arr)) { $this->setLexValue($arr[$keys[2]]); } if (array_key_exists($keys[3], $arr)) { $this->setLexCaption($arr[$keys[3]]); } }
/** * Retrieve object using using composite pkey values. * @param string $lex_topic * @param string $lex_key * @param Connection $con * @return Lexico */ public static function retrieveByPK($lex_topic, $lex_key, $con = null) { if ($con === null) { $con = Propel::getConnection(self::DATABASE_NAME); } $criteria = new Criteria(); $criteria->add(LexicoPeer::LEX_TOPIC, $lex_topic); $criteria->add(LexicoPeer::LEX_KEY, $lex_key); $v = LexicoPeer::doSelect($criteria, $con); return !empty($v) ? $v[0] : null; }