예제 #1
0
 public function executeZakonczone(sfWebRequest $request)
 {
     $u = new Criteria();
     $u->add(OdwiedzinyPeer::PRACOWNIK, $this->getUser()->getGuardUser()->getId());
     $u->add(OdwiedzinyPeer::WYKONANE, '1');
     $this->odwiedziny_list = OdwiedzinyPeer::doSelect($u);
 }
예제 #2
0
    echo url_for('klient/edit?id=' . $Klient->getId());
    ?>
">Edycja klienta</a>
<?php 
}
?>
&nbsp;
<a href="<?php 
echo url_for('klient/index');
?>
">Lista klientów</a>

<?php 
$od = new Criteria();
$od->add(OdwiedzinyPeer::KLIENT, $Klient->getId());
$odwiedz_list = OdwiedzinyPeer::doSelect($od);
?>
<br>
<br>
<br>

<div class="box_icon"><img src="/web/images/Formularz.png" alt=""> Spotkania z Klientem</div>
<br>

<table>
  <thead>
    <tr>
      <th>Id</th>
      <th>Pracownik</th>
      <th>Rozpoczecie</th>
      <th>Zakończenie</th>
예제 #3
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(OdwiedzinyPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(OdwiedzinyPeer::DATABASE_NAME);
         $criteria->add(OdwiedzinyPeer::ID, $pks, Criteria::IN);
         $objs = OdwiedzinyPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
예제 #4
0
 /**
  * Gets an array of Odwiedziny 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 Klient has previously been saved, it will retrieve
  * related Odwiedzinys from storage. If this Klient 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 Odwiedziny[]
  * @throws     PropelException
  */
 public function getOdwiedzinys($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(KlientPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collOdwiedzinys === null) {
         if ($this->isNew()) {
             $this->collOdwiedzinys = array();
         } else {
             $criteria->add(OdwiedzinyPeer::KLIENT, $this->id);
             OdwiedzinyPeer::addSelectColumns($criteria);
             $this->collOdwiedzinys = OdwiedzinyPeer::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(OdwiedzinyPeer::KLIENT, $this->id);
             OdwiedzinyPeer::addSelectColumns($criteria);
             if (!isset($this->lastOdwiedzinyCriteria) || !$this->lastOdwiedzinyCriteria->equals($criteria)) {
                 $this->collOdwiedzinys = OdwiedzinyPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastOdwiedzinyCriteria = $criteria;
     return $this->collOdwiedzinys;
 }