Exemplo n.º 1
0
    } else {
        ?>
					<input type="submit" value="Create Period" />&nbsp;<a href="timeperiods.php">Cancel</a>
					<?php 
    }
    ?>
			<br /><br />				
		<?php 
} else {
    if ($_GET['section'] == 'entries') {
        ?>
		<b>Time Period Entries:</b><br />
		<?php 
        $c = new Criteria();
        $c->add(NagiosTimeperiodEntryPeer::TIMEPERIOD_ID, $timeperiod->getId());
        $timeperiodEntries = NagiosTimeperiodEntryPeer::doSelect($c);
        if (!count($timeperiodEntries)) {
            ?>
			<div style="text-align: center;">No entries defined for this timeperiod.</div>
			<?php 
        } else {
            ?>
			<table width="100%" align="center" cellspacing="0" cellpadding="2" border="0">
			<tr class="altTop">
			<td>&nbsp;</td>
			<td><b>Weekday / Exception</b></td>
			<td><b>Time Ranges</b></td>
			</tr>
	
			<?php 
            for ($counter = 0; $counter < count($timeperiodEntries); $counter++) {
Exemplo n.º 2
0
 /**
  * Gets an array of NagiosTimeperiodEntry 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 NagiosTimeperiod has previously been saved, it will retrieve
  * related NagiosTimeperiodEntrys from storage. If this NagiosTimeperiod 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 NagiosTimeperiodEntry[]
  * @throws     PropelException
  */
 public function getNagiosTimeperiodEntrys($criteria = null, PropelPDO $con = null)
 {
     if ($criteria === null) {
         $criteria = new Criteria(NagiosTimeperiodPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collNagiosTimeperiodEntrys === null) {
         if ($this->isNew()) {
             $this->collNagiosTimeperiodEntrys = array();
         } else {
             $criteria->add(NagiosTimeperiodEntryPeer::TIMEPERIOD_ID, $this->id);
             NagiosTimeperiodEntryPeer::addSelectColumns($criteria);
             $this->collNagiosTimeperiodEntrys = NagiosTimeperiodEntryPeer::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(NagiosTimeperiodEntryPeer::TIMEPERIOD_ID, $this->id);
             NagiosTimeperiodEntryPeer::addSelectColumns($criteria);
             if (!isset($this->lastNagiosTimeperiodEntryCriteria) || !$this->lastNagiosTimeperiodEntryCriteria->equals($criteria)) {
                 $this->collNagiosTimeperiodEntrys = NagiosTimeperiodEntryPeer::doSelect($criteria, $con);
             }
         }
     }
     $this->lastNagiosTimeperiodEntryCriteria = $criteria;
     return $this->collNagiosTimeperiodEntrys;
 }
 /**
  * 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(NagiosTimeperiodEntryPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(NagiosTimeperiodEntryPeer::DATABASE_NAME);
         $criteria->add(NagiosTimeperiodEntryPeer::ID, $pks, Criteria::IN);
         $objs = NagiosTimeperiodEntryPeer::doSelect($criteria, $con);
     }
     return $objs;
 }