本文整理汇总了PHP中search::remove_forbidden_fields方法的典型用法代码示例。如果您正苦于以下问题:PHP search::remove_forbidden_fields方法的具体用法?PHP search::remove_forbidden_fields怎么用?PHP search::remove_forbidden_fields使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类search
的用法示例。
在下文中一共展示了search::remove_forbidden_fields方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: die
<?php
// +-------------------------------------------------+
// © 2002-2004 PMB Services / www.sigb.net pmb@sigb.net et contributeurs (voir www.sigb.net)
// +-------------------------------------------------+
// $Id: external.inc.php,v 1.12 2012-02-28 14:22:50 dbellamy Exp $
if (stristr($_SERVER['REQUEST_URI'], ".inc.php")) {
die("no access");
}
// second niveau de recherche OPAC sur titre
// inclusion classe pour affichage notices (level 1)
require_once $base_path . '/includes/templates/notice.tpl.php';
require_once $base_path . '/classes/notice.class.php';
require_once $class_path . "/search.class.php";
global $external_sources;
$selected_sources = implode(',', $field_0_s_2);
if ($_SESSION["ext_type"] == "multi") {
$es = new search("search_fields_unimarc");
$es->remove_forbidden_fields();
} else {
$es = new search("search_simple_fields_unimarc");
}
$es->show_results_unimarc("./index.php?lvl=more_results&mode=external", "./index.php?search_type_asked=external_search&external_type=simple", true);
//Enregistrement des stats
if ($pmb_logs_activate) {
global $nb_results_tab;
$nb_results_tab['external'] = $count;
}