示例#1
0
    <tr>
      <th>Id</th>
      <th>Klient</th>
      <th>Rozpoczecie</th>
      <th>Zakończenie</th>
      <th>Adres</th>
      <th>Wyk.</th>

    </tr>
  </thead>
  <tbody>
    <?php 
foreach ($odwiedziny_list as $odwiedziny) {
    $c = new Criteria();
    $c->add(KlientPeer::ID, $odwiedziny->getKlient());
    $dane = KlientPeer::doSelect($c);
    ?>
    <tr>
      <td><a href="<?php 
    echo url_for('odwiedziny/show?id=' . $odwiedziny->getId());
    ?>
"><?php 
    echo $odwiedziny->getId();
    ?>
</a></td>
      <td><a href="<?php 
    echo url_for('klient/show?id=' . $dane[0]->getId());
    ?>
"><?php 
    echo $dane[0]->getDane();
    ?>
示例#2
0
 public function executeMoi(sfWebRequest $request)
 {
     $c = new Criteria();
     $c->add(KlientPeer::ID, $this->getUser()->getGuardUser()->getId());
     $this->moi_list = KlientPeer::doSelect($c);
 }
示例#3
0
      <th>Id</th>
      <th>Dane</th>
      <th>Adres</th>
      <th>Pracownik</th>
      <th>Pr.</th>
      <th>Akt.</th>
      <th>Wsp.</th>
      <th>Grupy</th>
    </tr>
  </thead>
  <tbody>
    <?php 
foreach ($klient_grupa as $kl) {
    $c = new Criteria();
    $c->add(KlientPeer::ID, $kl->getKlientId());
    $klient_list = KlientPeer::doSelect($c);
    foreach ($klient_list as $klient) {
        ?>
    <tr>
      <td><a href="<?php 
        echo url_for('klient/show?id=' . $klient->getId());
        ?>
"><?php 
        echo $klient->getId();
        ?>
</a></td>

      <td><?php 
        echo $klient->getDane();
        ?>
</td>
示例#4
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(KlientPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(KlientPeer::DATABASE_NAME);
         $criteria->add(KlientPeer::ID, $pks, Criteria::IN);
         $objs = KlientPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
示例#5
0
 /**
  * Gets an array of Klient objects which contain a foreign key that references this object.
  *
  * If this collection has already been initialized with an identical Criteria, it returns the collection.
  * Otherwise if this sfGuardUser has previously been saved, it will retrieve
  * related Klients from storage. If this sfGuardUser is new, it will return
  * an empty collection or the current collection, the criteria is ignored on a new object.
  *
  * @param      PropelPDO $con
  * @param      Criteria $criteria
  * @return     array Klient[]
  * @throws     PropelException
  */
 public function getKlients($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(sfGuardUserPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collKlients === null) {
         if ($this->isNew()) {
             $this->collKlients = array();
         } else {
             $criteria->add(KlientPeer::PRACOWNIK, $this->id);
             KlientPeer::addSelectColumns($criteria);
             $this->collKlients = KlientPeer::doSelect($criteria, $con);
         }
     } else {
         // criteria has no effect for a new object
         if (!$this->isNew()) {
             // the following code is to determine if a new query is
             // called for.  If the criteria is the same as the last
             // one, just return the collection.
             $criteria->add(KlientPeer::PRACOWNIK, $this->id);
             KlientPeer::addSelectColumns($criteria);
             if (!isset($this->lastKlientCriteria) || !$this->lastKlientCriteria->equals($criteria)) {
                 $this->collKlients = KlientPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastKlientCriteria = $criteria;
     return $this->collKlients;
 }