示例#1
0
 public function setup()
 {
     $this->setWidgets(array('usuari_id' => new sfWidgetFormInputHidden(), 'app_id' => new sfWidgetFormChoice(array('choices' => AppsPeer::select())), 'nivell_id' => new sfWidgetFormChoice(array('choices' => NivellsPeer::getSelect()))));
     $this->setValidators(array('usuari_id' => new sfValidatorPropelChoice(array('model' => 'Usuaris', 'column' => 'UsuariID', 'required' => false)), 'app_id' => new sfValidatorPropelChoice(array('model' => 'Apps', 'column' => 'app_id', 'required' => false)), 'nivell_id' => new sfValidatorPropelChoice(array('model' => 'Nivells', 'column' => 'idNivells', 'required' => false))));
     $this->widgetSchema->setNameFormat('usuaris_apps[%s]');
     $this->errorSchema = new sfValidatorErrorSchema($this->validatorSchema);
     parent::setup();
 }
示例#2
0
文件: AppsPeer.php 项目: nagiro/intra
 public static function initialize($idA, $idS)
 {
     $OA = AppsPeer::retrieveByPK($idA);
     if (!$OA instanceof Apps) {
         $OA = new Apps();
         $OA->setSiteId($idS);
         $OA->setActiu(true);
     }
     return new AppsForm($ON, array('IDS' => $idS));
 }
示例#3
0
 public static function getPermisosOO($IDU, $IDS)
 {
     $C = new Criteria();
     $C = self::getCriteriaActiu($C, $IDS);
     $C = AppsPeer::getCriteriaActiu($C, $IDS);
     $C->add(self::USUARI_ID, $IDU);
     $C->add(self::NIVELL_ID, NivellsPeer::CAP, CRITERIA::NOT_EQUAL);
     $C->addJoin(self::APP_ID, AppsPeer::APP_ID);
     return AppsPeer::doSelect($C);
 }
 /**
  * Get the associated Apps object
  *
  * @param      PropelPDO Optional Connection object.
  * @return     Apps The associated Apps object.
  * @throws     PropelException
  */
 public function getApps(PropelPDO $con = null)
 {
     if ($this->aApps === null && $this->app_id !== null) {
         $this->aApps = AppsPeer::retrieveByPk($this->app_id);
         /* The following can be used additionally to
         		   guarantee the related object contains a reference
         		   to this object.  This level of coupling may, however, be
         		   undesirable since it could result in an only partially populated collection
         		   in the referenced object.
         		   $this->aApps->addUsuarisAppss($this);
         		 */
     }
     return $this->aApps;
 }
示例#5
0
 /**
  * Selects a collection of UsuarisApps objects pre-filled with all related objects except Nivells.
  *
  * @param      Criteria  $criteria
  * @param      PropelPDO $con
  * @param      String    $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
  * @return     array Array of UsuarisApps objects.
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAllExceptNivells(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $criteria = clone $criteria;
     // Set the correct dbName if it has not been overridden
     // $criteria->getDbName() will return the same object if not set to another value
     // so == check is okay and faster
     if ($criteria->getDbName() == Propel::getDefaultDB()) {
         $criteria->setDbName(self::DATABASE_NAME);
     }
     UsuarisAppsPeer::addSelectColumns($criteria);
     $startcol2 = UsuarisAppsPeer::NUM_COLUMNS - UsuarisAppsPeer::NUM_LAZY_LOAD_COLUMNS;
     UsuarisPeer::addSelectColumns($criteria);
     $startcol3 = $startcol2 + (UsuarisPeer::NUM_COLUMNS - UsuarisPeer::NUM_LAZY_LOAD_COLUMNS);
     AppsPeer::addSelectColumns($criteria);
     $startcol4 = $startcol3 + (AppsPeer::NUM_COLUMNS - AppsPeer::NUM_LAZY_LOAD_COLUMNS);
     $criteria->addJoin(UsuarisAppsPeer::USUARI_ID, UsuarisPeer::USUARIID, $join_behavior);
     $criteria->addJoin(UsuarisAppsPeer::APP_ID, AppsPeer::APP_ID, $join_behavior);
     // symfony_behaviors behavior
     foreach (sfMixer::getCallables(self::getMixerPreSelectHook(__FUNCTION__)) as $sf_hook) {
         call_user_func($sf_hook, 'BaseUsuarisAppsPeer', $criteria, $con);
     }
     $stmt = BasePeer::doSelect($criteria, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = UsuarisAppsPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = UsuarisAppsPeer::getInstanceFromPool($key1))) {
             // We no longer rehydrate the object, since this can cause data loss.
             // See http://propel.phpdb.org/trac/ticket/509
             // $obj1->hydrate($row, 0, true); // rehydrate
         } else {
             $cls = UsuarisAppsPeer::getOMClass(false);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             UsuarisAppsPeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined Usuaris rows
         $key2 = UsuarisPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = UsuarisPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $cls = UsuarisPeer::getOMClass(false);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 UsuarisPeer::addInstanceToPool($obj2, $key2);
             }
             // if $obj2 already loaded
             // Add the $obj1 (UsuarisApps) to the collection in $obj2 (Usuaris)
             $obj2->addUsuarisApps($obj1);
         }
         // if joined row is not null
         // Add objects for joined Apps rows
         $key3 = AppsPeer::getPrimaryKeyHashFromRow($row, $startcol3);
         if ($key3 !== null) {
             $obj3 = AppsPeer::getInstanceFromPool($key3);
             if (!$obj3) {
                 $cls = AppsPeer::getOMClass(false);
                 $obj3 = new $cls();
                 $obj3->hydrate($row, $startcol3);
                 AppsPeer::addInstanceToPool($obj3, $key3);
             }
             // if $obj3 already loaded
             // Add the $obj1 (UsuarisApps) to the collection in $obj3 (Apps)
             $obj3->addUsuarisApps($obj1);
         }
         // if joined row is not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
示例#6
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(AppsPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(AppsPeer::DATABASE_NAME);
         $criteria->add(AppsPeer::APP_ID, $pks, Criteria::IN);
         $objs = AppsPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
示例#7
0
文件: BaseApps.php 项目: nagiro/intra
 /**
  * Populates the object using an array.
  *
  * This is particularly useful when populating an object from one of the
  * request arrays (e.g. $_POST).  This method goes through the column
  * names, checking to see whether a matching key exists in populated
  * array. If so the setByName() method is called for that column.
  *
  * You can specify the key type of the array by additionally passing one
  * of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME,
  * BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
  * The default key type is the column's phpname (e.g. 'AuthorId')
  *
  * @param      array  $arr     An array to populate the object from.
  * @param      string $keyType The type of keys the array uses.
  * @return     void
  */
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = AppsPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setAppId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setNom($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setUrl($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setSiteId($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setActiu($arr[$keys[4]]);
     }
 }
示例#8
0
    ?>
" method="post">
     <DIV class="REQUADRE">
	    <?php 
    include_partial('botonera', array('tipus' => 'Tancar', 'url' => 'gestio/gUsuaris?accio=FC'));
    echo input_hidden_tag('id_usuari', $USUARI->getUsuariId());
    ?>
        <DIV class="TITOL">Gestió de permisos d'aplicacions de l'usuari <?php 
    echo $USUARI->getNomComplet();
    ?>
</DIV>        
      	<TABLE class="DADES">
                <?php 
    foreach (AppsPeer::select() as $IDAPP => $APP) {
        $SELECT = isset($LLISTAT_PERMISOS[$IDAPP]) ? $LLISTAT_PERMISOS[$IDAPP] : NivellsPeer::CAP;
        echo '<tr><td>' . AppsPeer::getNom($IDAPP) . '</td>
                				  <td>' . select_tag('PERMIS[' . $IDAPP . ']', options_for_select(NivellsPeer::getSelect(), $SELECT, array('include_blank' => true))) . '</td>
                			  </tr>';
    }
    echo '<TR><TD colspan="2"><button name="BACTUALITZA_PERMISOS" class="BOTO_ACTIVITAT">ACTUALITZA</TD></TR>';
    ?>
      	</TABLE>      
      </DIV>
     </form>

  <?php 
}
?>

	<?php 
if (isset($MODE['CONSULTA']) && $MODE['CONSULTA']) {