当前位置: 首页>>代码示例>>PHP>>正文


PHP PropelCollection::isEmpty方法代码示例

本文整理汇总了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');
 }
开发者ID:dracony,项目名称:forked-php-orm-benchmark,代码行数:8,代码来源:PropelCollectionTest.php

示例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>';
开发者ID:rhertzog,项目名称:lcs,代码行数:31,代码来源:generer_notifications_par_lot.php

示例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>";
开发者ID:rhertzog,项目名称:lcs,代码行数:31,代码来源:saisir_groupe_plan.php

示例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>';
开发者ID:alhousseyni,项目名称:gepi,代码行数:31,代码来源:generer_notifications_par_lot.php


注:本文中的PropelCollection::isEmpty方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。