當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ReferenceManager::getEntriesList方法代碼示例

本文整理匯總了PHP中ReferenceManager::getEntriesList方法的典型用法代碼示例。如果您正苦於以下問題:PHP ReferenceManager::getEntriesList方法的具體用法?PHP ReferenceManager::getEntriesList怎麽用?PHP ReferenceManager::getEntriesList使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ReferenceManager的用法示例。


在下文中一共展示了ReferenceManager::getEntriesList方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: html_liste_actions

 * @copyright Copyright © 2003 OpenWeb.eu.org
 * @license http://www.gnu.org/licenses/gpl.html GNU General Public License
 */
define('OW_BACKEND_ACTION', 'ACT_DOCCLASSE');
require_once '../../include/backend/init.inc.php';
require_once PATH_INC_BACKEND_JPACK . 'JHtml.lib.php';
require_once PATH_INC_BACKEND_JPACK . 'JUrl.class.php';
require_once PATH_INC_BACKEND_SERVICE . 'ReferenceManager.class.php';
require_once PATH_INC_BACKEND_SERVICE . 'UserManager.class.php';
require_once PATH_INC_BACKEND_SERVICE . 'DocumentManager.class.php';
echo html_liste_actions();
$ref = new ReferenceManager($db);
$listeCrit = $ref->getCriterionList();
$listeCat = array();
foreach ($listeCrit as $crit => $name) {
    $listeCat[$name] = $ref->getEntriesList($crit);
    if (empty($listeCat[$name])) {
        /* on enlève lorsqu'aucun classement n'existe */
        unset($listeCat[$name]);
    }
}
$listeArticles = array();
if (isset($_GET['catid'])) {
    $catid = $_GET['catid'];
    $am = new DocumentManager($db);
    $am->nbParPage = $am->nbrDocs();
    if (isset($_POST['liste'])) {
        $am->setDocumentOrder($catid, array_flip($liste));
    }
    $listeArticles = $am->getListBy1Critere($catid);
} else {
開發者ID:BackupTheBerlios,項目名稱:openweb-cms-svn,代碼行數:31,代碼來源:doc_classement.php

示例2: array

<label>Type : <?php 
htmlSelect('type', $ref->getTypeList(), $contraintes['type'], '', false, 'none', '-- tous --');
?>
</label>
<label>Utilisateur : <?php 
htmlSelectDB('uti', $um->getUserList(), $contraintes['uti'], 'uti_id', array('uti_prenom', 'uti_nom'), 1, false, 0, '-- tous --');
?>
</label>
<label>État : <?php 
htmlSelect('status', $statusLib, $contraintes['status'], 1, false, 'none', '-- tous --');
?>
</label>
<?php 
foreach ($critereLib as $nom => $critere) {
    echo '<label>', $critere, " : ";
    htmlSelect("cri_{$nom}", $ref->getEntriesList($nom), $contraintes["cri_{$nom}"], '', false, 'none', '-- tous --');
    echo "</label>\n";
}
?>

<input type="submit" value="Filtrer" name="filtrer" id="filtrer" />
</fieldset>
</form>

<?php 
/* On affiche la liste des articles */
$am = new DocumentManager($db);
$infosPages = array();
$listeArticles = $am->getListPage($contraintes, $infosPages);
if (count($listeArticles) == 0) {
    echo '<p>Aucun document ne correspond à ces critères.</p>', "\n";
開發者ID:BackupTheBerlios,項目名稱:openweb-cms-svn,代碼行數:31,代碼來源:documents.php


注:本文中的ReferenceManager::getEntriesList方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。