Example #1
0
 public function executeGetKeywords()
 {
     $val = $this->getRequestParameter('keyword');
     if (strlen($val) > 2) {
         $c = new Criteria();
         $c->add(KeywordPeer::LABEL, $val . "%", Criteria::LIKE);
         $c->add(KeywordPeer::PUBLICATION_STATUS, UtilsHelper::STATUS_ACTIVE);
         $c->setLimit(10);
         $keywords = KeywordPeer::doSelect($c);
         foreach ($keywords as $keyword) {
             $keys .= $keyword->getId() . "," . $keyword->getLabel() . ";";
         }
     }
     exit($keys);
 }
Example #2
0
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = KeywordPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setLabel($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setCreatedAt($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setUpdatedAt($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setPublicationStatus($arr[$keys[4]]);
     }
 }
Example #3
0
 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(KeywordPeer::ID, $pks, Criteria::IN);
         $objs = KeywordPeer::doSelect($criteria, $con);
     }
     return $objs;
 }