コード例 #1
0
ファイル: actions.class.php プロジェクト: yasirgit/afids
 /**
  * Searches campaigns
  * CODE:campaign_index
  */
 public function executeIndex(sfWebRequest $request)
 {
     # security
     if (!$this->getUser()->hasCredential(array('Administrator'), false)) {
         $this->getUser()->setFlash("warning", 'You don\'t have permission to access this url ' . $request->getReferer());
         $this->redirect('dashboard/index');
     }
     $this->campaign_list = CampaignPeer::doSelect(new Criteria());
 }
コード例 #2
0
ファイル: BaseCampaignPeer.php プロジェクト: yasirgit/afids
 /**
  * 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(CampaignPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(CampaignPeer::DATABASE_NAME);
         $criteria->add(CampaignPeer::ID, $pks, Criteria::IN);
         $objs = CampaignPeer::doSelect($criteria, $con);
     }
     return $objs;
 }