public static function getTargetLangArray()
 {
     $c = new Criteria();
     $catalogues = CataloguePeer::doSelect($c);
     foreach ($catalogues as $catalogue) {
         $cat_id = $catalogue->getCatId();
         $cat[$cat_id] = $catalogue->getNvisible();
     }
     return $cat;
 }
 public static function getCatalogues()
 {
     $c = new Criteria();
     return CataloguePeer::doSelect($c);
 }
 /**
  * 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(CataloguePeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(CataloguePeer::DATABASE_NAME);
         $criteria->add(CataloguePeer::CAT_ID, $pks, Criteria::IN);
         $objs = CataloguePeer::doSelect($criteria, $con);
     }
     return $objs;
 }