本文整理汇总了PHP中Categorie::load方法的典型用法代码示例。如果您正苦于以下问题:PHP Categorie::load方法的具体用法?PHP Categorie::load怎么用?PHP Categorie::load使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Categorie
的用法示例。
在下文中一共展示了Categorie::load方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Categorie
<?php
include_once '../../inc/inc.config.php';
include_once '../inc-auth-granted.php';
include_once '../classes/utils.php';
require '../classes/Categorie.php';
$debug = false;
$categorie = new Categorie();
// ---- Modification ---------------------------- //
if (!empty($_GET)) {
$action = 'modif';
$categorie = new Categorie();
$result = $categorie->load($_GET["id"]);
if (!empty($result)) {
$titre_page = 'Catégorie "' . $result[0]["nom"] . '"';
$id = $_GET["id"];
$id_parent = $result[0]["id_parent"];
$nom = $result[0]["nom"];
$image[1] = $result[0]["image"];
$tag = $result[0]["tag"];
if (empty($image[1]) || !isset($image[1])) {
$img[1] = "/img/favicon.png";
$imgval[1] = "/img/favicon.png";
} else {
$img[1] = '/photos/categorie' . $image[1];
$imgval[1] = $image[1];
}
} else {
$message = 'Aucun enregistrement';
}
} else {
示例2: isset
<th class="col-md-2" style="">Catégorie</th>
<th class="col-md-5" style="">Description</th>
<th class="col-md-1" style="">Photo</th>
<th class="col-md-1" style="">Online</th>
<th class="col-md-1" colspan="2" style="">Actions</th>
</tr>
</thead>
<tbody>
<?
if ( !empty( $liste_produit ) ) {
$i=0;
foreach ( $liste_produit as $value ) {
$i++;
// ---- Chargement de la catégorie associée
$data = $categorie->load( $value[ "id_categorie" ] );
$classe_affichage = ( $i % 2 != 0 ) ? "info" : "";
$description = couper_correctement( $value[ "description" ], 50 );
if ( strlen( $value[ "description" ] ) > 50 ) $description .= " ...";
$image_ok = ( !empty( $value[ "image" ] ) && isset( $value[ "image" ] ) ) ? "image OK" : " ";
$online = ( $value[ "online" ] == '1' ) ? 'check' : 'vide';
echo "<tr class='" . $classe_affichage . "'>\n";
echo " <td>" . $value[ "nom" ] . "</td>\n";
echo " <td>" . $data[ 0 ][ "nom" ] . "</td>\n";
echo " <td>" . $description . "</td>\n";
echo " <td>" . $image_ok . "</td>\n";
echo " <td><img src='../img/" . $online . ".png' width='30' ></td>\n";
echo " <td><a href='./edition.php?id=" . $value[ "id" ] . "'><img src='../img/modif.png' width='30' alt='Modifier' ></a></td>\n";
echo " <td>\n";
示例3: Categorie
require $_SERVER["DOCUMENT_ROOT"] . "/inc/inc.config.php";
require $_SERVER["DOCUMENT_ROOT"] . "/admin/classes/Categorie.php";
$debug = false;
$categorie = new Categorie();
$id = $_GET["id"];
$btn_creation_categorie = "Créer la catégorie";
// ---- Liste des catégories de niveau 0 ------ //
if (1 == 1) {
unset($recherche);
$recherche["id_parent"] = 0;
$liste_categorie = $categorie->getListe($recherche, $debug);
}
// -------------------------------------------- //
// ---- Chargement d'une catégorie ------------ //
if ($_GET["id"] != '') {
$datas = $categorie->load($id);
if (!empty($datas[0])) {
$id_parent = $datas[0]["id_parent"];
$nom = $datas[0]["nom"];
$btn_creation_categorie = "Modifier la catégorie";
}
}
// -------------------------------------------- //
if (empty($liste_categorie)) {
$message = 'Aucun enregistrement';
} else {
$message = '';
}
?>
<!doctype html>