예제 #1
0
 /**
  * Returns the select tag for choosing the repetition type
  *
  * @return     string
  */
 public static function getSelectTag()
 {
     $s = "<select name=\"repetitionTypes\"><option value=\"-1\">" . __('ACCOUNT_TASK_REPETITION_DO_NOT_REPEAT') . "</option>";
     $c = new Criteria();
     $c->addAscendingOrderByColumn(PcRepetitionPeer::SORT_ORDER);
     $repetitions = PcRepetitionPeer::doSelect($c);
     foreach ($repetitions as $repetition) {
         $s .= "<option value=\"{$repetition->getId()}\">{$repetition->getLocalizedHumanExpression()}</option>";
         if ($repetition->hasDividerBelow()) {
             $s .= "<option value=\"0\">-------------------</option>";
         }
     }
     $s .= "</select>";
     return $s;
 }
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      PropelPDO $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, PropelPDO $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(PcRepetitionPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(PcRepetitionPeer::DATABASE_NAME);
         $criteria->add(PcRepetitionPeer::ID, $pks, Criteria::IN);
         $objs = PcRepetitionPeer::doSelect($criteria, $con);
     }
     return $objs;
 }