コード例 #1
0
 /**
  * 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(afWidgetSelectorPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(afWidgetSelectorPeer::DATABASE_NAME);
         $criteria->add(afWidgetSelectorPeer::ID, $pks, Criteria::IN);
         $objs = afWidgetSelectorPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
コード例 #2
0
 private function doDBCleanup()
 {
     $c = new Criteria();
     $c->add(afWidgetSelectorPeer::ID, $this->widgets, Criteria::NOT_IN);
     $res = afWidgetSelectorPeer::doSelect($c);
     $this->logSection("\nClearing unused data..\n", null, null, "ERROR");
     if ($res) {
         foreach ($res as $item) {
             $this->logSection("Deleting: ", $item->getUrl(), null);
             $item->delete();
         }
     } else {
         $this->logSection("No outdated records..", null, null, "COMMENT");
     }
 }