コード例 #1
0
 public function setup()
 {
     $this->setWidgets(array('idMissatgesLlistes' => new sfWidgetFormInputHidden(), 'Llistes_idLlistes' => new sfWidgetFormChoice(array('choices' => LlistesPeer::select($this->getOption('IDS')))), 'Enviat' => new sfWidgetFormInputHidden()));
     $this->setValidators(array('idMissatgesLlistes' => new sfValidatorPropelChoice(array('model' => 'Missatgesllistes', 'column' => 'idMissatgesLlistes', 'required' => false)), 'Llistes_idLlistes' => new sfValidatorPropelChoice(array('model' => 'Llistes', 'column' => 'idLlistes')), 'Enviat' => new sfValidatorDate()));
     $this->widgetSchema->setNameFormat('missatgesllistes[%s]');
     $this->errorSchema = new sfValidatorErrorSchema($this->validatorSchema);
 }
コード例 #2
0
ファイル: Missatgesmailing.php プロジェクト: nagiro/intra
 public function getLlistesEnviament()
 {
     $C = new Criteria();
     $C->add(MissatgesllistesPeer::IDMISSATGESLLISTES, $this->getIdmissatge());
     $C->addJoin(LlistesPeer::IDLLISTES, MissatgesllistesPeer::LLISTES_IDLLISTES);
     return LlistesPeer::doSelect($C);
 }
コード例 #3
0
ファイル: Missatgesllistes.php プロジェクト: nagiro/intra
 public function getLlistesArray()
 {
     $RET = array();
     $C = new Criteria();
     $C->add(LlistesPeer::IDLLISTES, $this->getLlistesIdllistes());
     foreach (LlistesPeer::doSelect($C) as $L) {
         $RET[] = $L;
     }
     return $RET;
 }
コード例 #4
0
ファイル: LlistesPeer.php プロジェクト: nagiro/intra
 public static function select($idS)
 {
     $C = new Criteria();
     $C = self::getCriteriaActiu($C, $idS);
     $C->add(LlistesPeer::ISACTIVA, true);
     $SELECT = array();
     foreach (LlistesPeer::doSelect($C) as $L) {
         $SELECT[$L->getIdllistes()] = $L->getNom();
     }
     return $SELECT;
 }
コード例 #5
0
ファイル: MissatgesllistesPeer.php プロジェクト: nagiro/intra
 public static function getLlistesArray($IDM, $idS)
 {
     $RET = array();
     $C = new Criteria();
     $C = self::getCriteriaActiu($C, $idS);
     $C = LlistesPeer::getCriteriaActiu($C, $idS);
     $C->add(self::IDMISSATGESLLISTES, $IDM);
     $C->addJoin(self::LLISTES_IDLLISTES, LlistesPeer::IDLLISTES);
     foreach (LlistesPeer::doSelect($C) as $OL) {
         $RET[] = $OL->getIdllistes();
     }
     return $RET;
 }
コード例 #6
0
ファイル: _gestio.php プロジェクト: nagiro/intra
function gestiona_llistes($LLISTES, $MISSATGE)
{
    ?>
	<form name="gDades" action="<?php 
    echo url_for('web/gestio?accio=sl');
    ?>
" method="post">
	  
		<FIELDSET class="REQUADRE"><LEGEND class="LLEGENDA">Llistes de correu</LEGEND>
		   
			<table class="FORMULARI">
			
				<?php 
    echo missatge($MISSATGE);
    ?>
			   
				<?php 
    foreach (LlistesPeer::select() as $K => $L) {
        ?>
				          
					<TR><TD><?php 
        echo checkbox_tag('LLISTA[]', $K, isset($LLISTES[$K]));
        ?>
</TD><TD><?php 
        echo $L;
        ?>
</TD></TR>
					      	
				<?php 
    }
    ?>
					
			</table>
			         
		</FIELDSET>
	
	   <FIELDSET class="REQUADRE"><LEGEND class="LLEGENDA">Accions</LEGEND>
	      
		<table class="FORMULARI">
		   
			<TR><TD colspan="2"><?php 
    echo submit_tag('Modifiqueu', array('class' => 'BOTO_ACTIVITAT', 'style' => 'width:100px;'));
    ?>
</TD></TR>
			
		</table>
		         
	   </FIELDSET>

	</form>

   <?php 
}
コード例 #7
0
ファイル: gLlistesSuccess.php プロジェクト: nagiro/intra
    ?>


	<form action="<?php 
    echo url_for('gestio/gLlistes');
    ?>
" method="post">            
	 	<DIV class="REQUADRE">	 
         <DIV class="TITOL">Escull les llistes on vols enviar-lo </DIV>
            <?php 
    echo input_hidden_tag('IDM', $IDM);
    ?>
            	
	    	<table class="FORMULARI" width="600px">
	    		<tr><td>Llistes: </td><td><?php 
    echo select_tag('LLISTES_ENVIAMENT', options_for_select(LlistesPeer::select($IDS), $LLISTES_ENVIAMENT), array('multiple' => true));
    ?>
</td></tr>	    	                								
                <tr>
                	<td width="100px"></td>               	
	            	<td class="dreta" width="400px">
	            		<br>
	            		<button class="BOTO_ACTIVITAT" name="BSAVE_LLISTES">Guardar</button>
	            		<button class="BOTO_ACTIVITAT" name="BSEGUEIX_ENVIAMENT">Segueix -->></button>	            		    				            		         	            		
	            	</td>
	            </tr>                	 
      		</TABLE>
      	</DIV>
      	
     </form>  
コード例 #8
0
 public function saveLlista()
 {
     $L = new Llistes();
     if (!$this->getRequestParameter('NOU')) {
         $L = LlistesPeer::retrieveByPK($this->getRequestParameter('IDL'));
         $L->setNew(false);
     }
     $L->setNom($this->getRequestParameter('NOM'));
     $L->save();
     $RET['ERRORS'] = array();
     $RET['LLISTA'] = $L;
     return $RET;
 }
コード例 #9
0
ファイル: BaseLlistes.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 = LlistesPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setIdllistes($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setNom($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setIsactiva($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]]);
     }
 }
コード例 #10
0
 /**
  * Selects a collection of Usuarisllistes objects pre-filled with all related objects except Usuaris.
  *
  * @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 Usuarisllistes objects.
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAllExceptUsuaris(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);
     }
     UsuarisllistesPeer::addSelectColumns($criteria);
     $startcol2 = UsuarisllistesPeer::NUM_COLUMNS - UsuarisllistesPeer::NUM_LAZY_LOAD_COLUMNS;
     LlistesPeer::addSelectColumns($criteria);
     $startcol3 = $startcol2 + (LlistesPeer::NUM_COLUMNS - LlistesPeer::NUM_LAZY_LOAD_COLUMNS);
     $criteria->addJoin(UsuarisllistesPeer::LLISTES_IDLLISTES, LlistesPeer::IDLLISTES, $join_behavior);
     // symfony_behaviors behavior
     foreach (sfMixer::getCallables(self::getMixerPreSelectHook(__FUNCTION__)) as $sf_hook) {
         call_user_func($sf_hook, 'BaseUsuarisllistesPeer', $criteria, $con);
     }
     $stmt = BasePeer::doSelect($criteria, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = UsuarisllistesPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = UsuarisllistesPeer::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 = UsuarisllistesPeer::getOMClass(false);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             UsuarisllistesPeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined Llistes rows
         $key2 = LlistesPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = LlistesPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $cls = LlistesPeer::getOMClass(false);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 LlistesPeer::addInstanceToPool($obj2, $key2);
             }
             // if $obj2 already loaded
             // Add the $obj1 (Usuarisllistes) to the collection in $obj2 (Llistes)
             $obj2->addUsuarisllistes($obj1);
         }
         // if joined row is not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
コード例 #11
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(LlistesPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(LlistesPeer::DATABASE_NAME);
         $criteria->add(LlistesPeer::IDLLISTES, $pks, Criteria::IN);
         $objs = LlistesPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
コード例 #12
0
 /**
  * Get the associated Llistes object
  *
  * @param      PropelPDO Optional Connection object.
  * @return     Llistes The associated Llistes object.
  * @throws     PropelException
  */
 public function getLlistes(PropelPDO $con = null)
 {
     if ($this->aLlistes === null && $this->llistes_idllistes !== null) {
         $this->aLlistes = LlistesPeer::retrieveByPk($this->llistes_idllistes);
         /* 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->aLlistes->addUsuarisllistess($this);
         		 */
     }
     return $this->aLlistes;
 }