/**
  * Implementation for 'GET' method for Rest API
  *
  * @param  mixed $timeId 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($timeId = 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(DimTimeCompletePeer::TIME_ID);
             $criteria->addSelectColumn(DimTimeCompletePeer::MONTH_ID);
             $criteria->addSelectColumn(DimTimeCompletePeer::QTR_ID);
             $criteria->addSelectColumn(DimTimeCompletePeer::YEAR_ID);
             $criteria->addSelectColumn(DimTimeCompletePeer::MONTH_NAME);
             $criteria->addSelectColumn(DimTimeCompletePeer::MONTH_DESC);
             $criteria->addSelectColumn(DimTimeCompletePeer::QTR_NAME);
             $criteria->addSelectColumn(DimTimeCompletePeer::QTR_DESC);
             $dataset = AppEventPeer::doSelectRS($criteria);
             $dataset->setFetchmode(ResultSet::FETCHMODE_ASSOC);
             while ($dataset->next()) {
                 $result[] = $dataset->getRow();
             }
         } else {
             $record = DimTimeCompletePeer::retrieveByPK($timeId);
             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 DimTimeComplete ({$paramValues})");
             }
         }
     } catch (RestException $e) {
         throw new RestException($e->getCode(), $e->getMessage());
     } catch (Exception $e) {
         throw new RestException(412, $e->getMessage());
     }
     return $result;
 }
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      Connection $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *       rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(self::DATABASE_NAME);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria();
         $criteria->add(DimTimeCompletePeer::TIME_ID, $pks, Criteria::IN);
         $objs = DimTimeCompletePeer::doSelect($criteria, $con);
     }
     return $objs;
 }
 /**
  * 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 = DimTimeCompletePeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setTimeId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setMonthId($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setQtrId($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setYearId($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setMonthName($arr[$keys[4]]);
     }
     if (array_key_exists($keys[5], $arr)) {
         $this->setMonthDesc($arr[$keys[5]]);
     }
     if (array_key_exists($keys[6], $arr)) {
         $this->setQtrName($arr[$keys[6]]);
     }
     if (array_key_exists($keys[7], $arr)) {
         $this->setQtrDesc($arr[$keys[7]]);
     }
 }