{
$fields = array(
new UFBF_Quick('quick', 'Recherche rapide'),
+ new UFBF_NotRegistered('nonins', 'Non inscrits'),
);
parent::__construct($fields, $envprefix);
}
}
// }}}
+// {{{ class UFBF_NotRegistered
+// Simple field for selecting only alive, not registered users (for quick search)
+class UFBF_NotRegistered extends UFBF_Bool
+{
+ protected function buildUFC(UserFilterBuilder &$ufb)
+ {
+ if ($this->val) {
+ return new PFC_And(
+ new PFC_Not(new UFC_Dead()),
+ new PFC_Not(new UFC_Registered())
+ );
+ }
+ }
+}
+// }}}
+
// {{{ class UFBF_Registered
class UFBF_Registered extends UFBF_Enum
{
}
}
+require_once "ufbuilder.inc.php";
+
class SearchSet extends ProfileSet
{
- public $advanced = false;
- private $score = null;
- private $quick = false;
- private $valid = true;
+ protected $score = null;
+ protected $valid = true;
- public function __construct($quick = false, PlFilterCondition $cond = null)
+ public function __construct(UserFilterBuilder &$ufb, PlFilterCondition $cond = null)
{
- if (isset($no_search)) {
- return;
- }
-
- $this->quick = $quick;
-
if (is_null($cond)) {
$conds = new PFC_And();
} else if ($cond instanceof PFC_And) {
$conds = new PFC_And($cond);
}
- if ($quick) {
- $this->getQuick($conds);
- } else {
- $this->getAdvanced($conds);
- }
- }
-
- public function isValid()
- {
- return $this->valid;
- }
-
- /** Sets up the conditions for a Quick Search
- * @param $conds Additional conds (as a PFC_And)
- */
- private function getQuick($conds)
- {
- if (!S::logged()) {
- Env::kill('with_soundex');
- }
-
- require_once 'ufbuilder.inc.php';
- $ufb = new UFB_QuickSearch();
-
if (!$ufb->isValid()) {
$this->valid = false;
return;
$orders = $ufb->getOrders();
- if (S::logged() && Env::has('nonins')) {
- $conds = new PFC_And($conds,
- new PFC_Not(new UFC_Dead()),
- new PFC_Not(new UFC_Registered())
- );
- }
-
parent::__construct($conds, $orders);
}
- /** Sets up the conditions for an Advanced Search
- * @param $conds Additional conds (as a PFC_And)
- */
- private function getAdvanced($conds)
+ public function isValid()
{
- $this->advanced = true;
- require_once 'ufbuilder.inc.php';
- $ufb = new UFB_AdvancedSearch();
-
- if (!$ufb->isValid()) {
- $this->valid = false;
- return;
- }
-
- $ufc = $ufb->getUFC();
- $conds->addChild($ufc);
-
- $orders = $ufb->getOrders();
-
- parent::__construct($conds, $orders);
+ return $this->valid;
}
/** Add a "rechercher=Chercher" field to the query to simulate the POST
}
}
+// Specialized SearchSet for quick search.
+class QuickSearchSet extends SearchSet
+{
+ public function __construct(PlFilterCondition $cond = null)
+ {
+ if (!S::logged()) {
+ Env::kill('with_soundex');
+ }
+
+ parent::__construct(new UFB_QuickSearch(), $cond);
+ }
+}
+
+// Specialized SearchSet for advanced search.
+class AdvancedSearchSet extends SearchSet
+{
+ public function __construct(PlFilterCondition $cond = null)
+ {
+ parent::__construct(new UFB_AdvancedSearch(), $cond);
+ }
+}
+
/** Simple set based on an array of User objects
*/
class ArraySet extends ProfileSet
$page->assign('formulaire', 0);
require_once 'userset.inc.php';
- $view = new SearchSet(true);
+ $view = new QuickSearchSet();
$view->addMod('minifiche', 'Mini-fiches', true, array('with_score' => true, 'starts_with' => $byletter));
if (S::logged() && !Env::i('nonins')) {
$view->addMod('trombi', 'Trombinoscope', false, array('with_promo' => true, 'with_score' => true));
}
require_once 'userset.inc.php';
- $view = new SearchSet(false);
+ $view = new AdvancedSearchSet();
if (!$view->isValid()) {
$this->form_prepare();
$page->trigError('Recherche invalide.');