本文整理汇总了PHP中Option::findAll方法的典型用法代码示例。如果您正苦于以下问题:PHP Option::findAll方法的具体用法?PHP Option::findAll怎么用?PHP Option::findAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Option
的用法示例。
在下文中一共展示了Option::findAll方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: listerTout
function listerTout()
{
// Liste de toutes les options
echo "Liste des options disponibles dans la base : <br/>";
$listeOptions = Option::findAll();
foreach ($listeOptions as $value) {
$value->afficher();
}
}
示例2: generateDashboard
public static function generateDashboard()
{
$res = '<div class="row">
<div class="col-sm-12 page-title">
<h2><span class="glyphicon glyphicon-dashboard"></span> Tableau de bord</h2>
</div>
</div>
<div class="row">
<div class="col-sm-12 page-content">
<div class=" col-sm-6">
<h3>Paiements en retard</h3>
<hr>
<table class="table table-striped">
<!-- header du tableau -->
<thead>
<th class="col-sm-4">Adresse</th>
<th class="col-sm-2">Montant du</th>
<th class="col-sm-3">Prochaine écheance du loyer</th>
<th class="col-sm-1">Rappel</th>
</thead>
<!-- contenu du tableau -->
<tbody>';
$res2 = "";
$res3 = "";
$impayes = Impaye::findAll();
foreach ($impayes as $impaye) {
$location = Location::findById($impaye->id_location);
$utilisateur = Utilisateur::findById($impaye->id_utilisateur);
$typeutilisateur = TypeUtilisateur::findById($utilisateur->id_type_utilisateur);
if ($typeutilisateur->id_type_utilisateur != 14) {
$appart = Appartement::findById($location->id_appartement);
$adresse = Adresse::findById($appart->id_adresse);
$res .= ' <tr id="appart_01">
<td>' . $adresse->numRue . ' ' . $adresse->rue . '<br>' . $adresse->codePostal . ' ' . $adresse->ville . '</td>
<td>' . $impaye->montant . ' €</td>
<td>' . $impaye->dateLimite . '</td>
<td>
<a class="btn btn-sm btn-default">
Envoyer rappel
</a>
</td>
</tr>';
}
$res2 .= ' <tr id="proprio01">
<td>' . $utilisateur->prenom . ' ' . $utilisateur->nom . '</td>
<td>' . $impaye->montant . ' €</td>
<td>
<a class="btn btn-sm btn-primary">
Payer
</a>
</td>
</tr>';
}
$res .= '</tbody>
</table>
</div>
<div class="col-sm-5 col-sm-offset-1">
<h3>Propriétaires à payer</h3>
<hr>
<table class="table table-striped">
<!-- header du tableau -->
<thead>
<th class="col-sm-6">Nom</th>
<th>Montant à régler</th>
<th class="col-sm-2">Régler</th>
</thead>
<!-- contenu du tableau -->
<tbody>';
$res .= $res2;
$res .= ' </tbody>
</table>
</div>
';
$options = Option::findAll();
$idappart = "";
$old_idappart = "";
foreach ($options as $option) {
$id_appart = $option->id_appartement;
if ($id_appart != $old_idappart) {
$res3 .= ' <tr id="proprio01">
<td>Appartement n°' . $option->id_appartement . '</td>
<td></td>
<td>
<center><a class="btn btn-sm btn-primary">
Détails
</a></center>
</td>
</tr>';
}
$utilisateur = Utilisateur::findById($option->id_utilisateur);
$appart = Appartement::findById($option->id_appartement);
$res3 .= ' <tr id="proprio01">
<td>' . $utilisateur->prenom . ' ' . $utilisateur->nom . '</td>
<td>' . $option->date . '</td>
<td>
<center><a class="btn btn-sm btn-success">
//.........这里部分代码省略.........