本文整理汇总了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 {
示例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";