本文整理汇总了PHP中PropelCollection::isEmpty方法的典型用法代码示例。如果您正苦于以下问题:PHP PropelCollection::isEmpty方法的具体用法?PHP PropelCollection::isEmpty怎么用?PHP PropelCollection::isEmpty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PropelCollection
的用法示例。
在下文中一共展示了PropelCollection::isEmpty方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testIsEmpty
public function testIsEmpty()
{
$col = new PropelCollection();
$this->assertTrue($col->isEmpty(), 'isEmpty() returns true on an empty collection');
$data = array('bar1', 'bar2', 'bar3');
$col = new PropelCollection($data);
$this->assertFalse($col->isEmpty(), 'isEmpty() returns false on a non empty collection');
}
示例2: foreach
echo $notif->getAdresse()->getDescriptionSurUneLigne();
}
echo '</td>';
echo '<td>Statut '.$notif->getStatutEnvoi().'</td>';
echo '<td>'.$notif->getDateEnvoi('d/m/Y H:i').'</td>';
echo '<td>';
if ($notif->getAbsenceEleveTraitement() != null) {
echo 'Traitement '.$notif->getAbsenceEleveTraitement()->getDescription();
}
echo '</td>';
echo '</tr>';
}
echo '</table></br>';
echo '<br/>';
}
if (!$notif_courrier_a_envoyer_col->isEmpty()) {$notif = new AbsenceEleveNotification();
echo 'Nouveaux courriers';
echo '<table id="table_liste_absents" style="border-spacing:0px;">';
//en tete commentaire
echo '</tr>';
echo '<th>id</th>';
echo '<th></th>';
echo '<th>responsables</th>';
echo '<th>adresse</th>';
echo '<th>statut</th>';
echo '<th>date d\'envoi</th>';
echo '<th>traitement</th>';
echo '</tr>';
foreach($notif_courrier_a_envoyer_col as $notif) {
echo '<tr>';
echo '<td><a href="visu_notification.php?id_notification='.$notif->getId().'">'.$notif->getId().'</a></td>';
示例3: PropelCollection
$absences_du_creneau = $eleve->getAbsenceEleveSaisiesDuCreneau($edt_creneau, $dt_date_absence_eleve);
}
} else {
//on affiche les informations pour les crenaux avant la saisie sauf si configuré autrement
if (getSettingValue("abs2_montrer_creneaux_precedents")=='y') {
$absences_du_creneau = $eleve->getAbsenceEleveSaisiesDuCreneau($edt_creneau, $dt_date_absence_eleve);
} else {
$absences_du_creneau = new PropelCollection();
}
}
$afficheEleve[$elv]['style'][$i] = "";
if ($deja_saisie && $nb_creneau_a_saisir > 0) {
$afficheEleve[$elv]['style'][$i] = "fondVert";
}
if (!$absences_du_creneau->isEmpty()) {
foreach ($absences_du_creneau as $abs_saisie) {
if ($abs_saisie->getManquementObligationPresence()) {
$afficheEleve[$elv]['style'][$i] = "fondRouge";
break;
}
}
}
// 20130416
$tmp_creneau=$col_creneaux[$i];
/*
echo "<p><br /><p>";
echo "<pre>";
print_r($tmp_creneau);
echo "</pre>";
示例4: AbsenceEleveNotification
echo $notif->getAdresse()->getDescriptionSurUneLigne();
}
echo '</td>';
echo '<td>Statut ' . $notif->getStatutEnvoi() . '</td>';
echo '<td>' . $notif->getDateEnvoi('d/m/Y H:i') . '</td>';
echo '<td>';
if ($notif->getAbsenceEleveTraitement() != null) {
echo 'Traitement ' . $notif->getAbsenceEleveTraitement()->getDescription();
}
echo '</td>';
echo '</tr>';
}
echo '</table></br>';
echo '<br/>';
}
if (!$notif_courrier_a_envoyer_col->isEmpty()) {
$notif = new AbsenceEleveNotification();
echo 'Nouveaux courriers';
echo '<table id="table_liste_absents" style="border-spacing:0px;">';
//en tete commentaire
echo '</tr>';
echo '<th>id</th>';
echo '<th></th>';
echo '<th>responsables</th>';
echo '<th>adresse</th>';
echo '<th>statut</th>';
echo '<th>date d\'envoi</th>';
echo '<th>traitement</th>';
echo '</tr>';
foreach ($notif_courrier_a_envoyer_col as $notif) {
echo '<tr>';