forked from ZwiiCMS-Team/ZwiiCMS
[9.2.0.dev] module search, petites corrections
This commit is contained in:
parent
0868fe52f2
commit
f0a7765d05
@ -10,6 +10,9 @@
|
||||
* @copyright Copyright (C) 2008-2018, Rémi Jean
|
||||
* @license GNU General Public License, version 3
|
||||
* @link http://zwiicms.com/
|
||||
*
|
||||
* Module search
|
||||
* Produit par la communauté à partit d'un développement de Sylvain Lelièvre
|
||||
*/
|
||||
|
||||
// Module de recherche d'un mot ou d'une phrase clef
|
||||
@ -95,17 +98,17 @@ class search extends common {
|
||||
}
|
||||
// Message de synthèse de la recherche
|
||||
if ($this->getData(['search',$total])===0) {
|
||||
$notification = 'Mot clef non trouvé, avez-vous pensé aux accents ?';
|
||||
$result .='Mot clef non trouvé, avez-vous pensé aux accents ?';
|
||||
$notification = 'Mot clef non trouvé. Avez-vous pensé aux accents ?';
|
||||
$result .='Mot clef non trouvé. Avez-vous pensé aux accents ?';
|
||||
$success = false;
|
||||
} else {
|
||||
$result .= 'Nombre total d\'occurrences : '.$this->getData(['search',$total]);
|
||||
$notification = 'Nombre total d\'occurrences : '.$this->getData(['search',$total]);
|
||||
$result .= 'Nombre d\'occurrences : '.$this->getData(['search',$total]);
|
||||
$notification = 'Nombre d\'occurrences : '.$this->getData(['search',$total]);
|
||||
$success = true;
|
||||
}
|
||||
} else {
|
||||
$notification = 'Trop court ! minimum 3 caractères';
|
||||
$result = 'Trop court ! minimum 3 caractères';
|
||||
$notification = 'Trop court ! Minimum 3 caractères';
|
||||
$result = 'Trop court ! Minimum 3 caractères';
|
||||
$success = false;
|
||||
}
|
||||
|
||||
@ -142,23 +145,16 @@ class search extends common {
|
||||
$total = '';
|
||||
$resultat= '';
|
||||
// Recherche des occurrences
|
||||
do
|
||||
{
|
||||
do {
|
||||
$occu = stristr($contenu,$motclef);
|
||||
if ($occu !== false)
|
||||
{
|
||||
if ($motentier === true)
|
||||
{
|
||||
if ($occu !== false) {
|
||||
if ($motentier === true) {
|
||||
$controle_entier=$this->test_motentier($contenu,$motclef);
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
$controle_entier=true;
|
||||
}
|
||||
if ($controle_entier)
|
||||
{
|
||||
if ($titre !== $dejavu)
|
||||
{
|
||||
if ($controle_entier) {
|
||||
if ($titre !== $dejavu) {
|
||||
$resultat = '<p><br/>Mot clef trouvé dans la page : <a href="./?'.$url.'" target="_blank" rel="noopener">'.$titre.'</a><br/></p>';
|
||||
}
|
||||
$dejavu = $titre;
|
||||
@ -181,11 +177,9 @@ class search extends common {
|
||||
// Retourne $contenu nettoyée, le résultat est sensiblement différent de celui obtenu avec la fonction strip_tags()
|
||||
private function nettoyer_html($contenu)
|
||||
{
|
||||
do
|
||||
{
|
||||
do {
|
||||
$pos1=strpos($contenu,chr(60));
|
||||
if($pos1!==false)
|
||||
{
|
||||
if($pos1!==false) {
|
||||
$pos2=strpos($contenu,chr(62));
|
||||
if($pos2!==false) $contenu=substr_replace($contenu," ",$pos1,($pos2 - $pos1 + 1));
|
||||
}
|
||||
@ -204,8 +198,10 @@ class search extends common {
|
||||
$avant=ord(substr($chaine,$pos1-1, 1));
|
||||
$apres=ord(substr($chaine,$pos1+strlen($clef),1));
|
||||
// Traitement pour le caractère qui précède et celui qui suit
|
||||
if (($avant>=65 && $avant<=90) || ($avant>=97 && $avant<=122) || ($apres>=65 && $apres<=90) || ($apres>=97 && $apres<=122) )
|
||||
{
|
||||
if (($avant>=65 && $avant<=90) ||
|
||||
($avant>=97 && $avant<=122) ||
|
||||
($apres>=65 && $apres<=90) ||
|
||||
($apres>=97 && $apres<=122) ) {
|
||||
$resultat=false;
|
||||
}
|
||||
return $resultat;
|
||||
|
@ -19,8 +19,7 @@
|
||||
</div>
|
||||
<div class="row">
|
||||
<?php echo template::checkbox('searchMotentier', true, 'Mot entier uniquement', [
|
||||
'value' =>'1',
|
||||
'help' => 'Cette option permet de faire une recherche sur un mot entier plutôt que sur une portion de mot.'
|
||||
'checked' => false
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -7,7 +7,7 @@
|
||||
<div class="col10 verticalAlignBottom">
|
||||
<?php echo template::text('searchMotphraseclef', [
|
||||
'label' => 'Mot ou phrase clef',
|
||||
'value' => $_POST['searchMotphraseclef'],
|
||||
'value' => isset($_POST['searchMotphraseclef']) === true ? $_POST['searchMotphraseclef'] : '',
|
||||
'help' => 'Saisir un mot ou une phrase complète sans guillemets, n\'oubliez pas les accents.'
|
||||
]); ?>
|
||||
</div>
|
||||
@ -19,16 +19,19 @@
|
||||
</div>
|
||||
<div class="row">
|
||||
<?php echo template::checkbox('searchMotentier', true, 'Mot entier uniquement', [
|
||||
'value' =>'1',
|
||||
'help' => 'Cette option permet de faire une recherche sur un mot entier plutôt que sur une portion de mot.'
|
||||
'checked' => isset($_POST['searchMotentier']) === true ? $_POST['searchMotentier'] : ''
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col12">
|
||||
<div class="block">
|
||||
<h4>Résulats</h4>
|
||||
<?php echo $_POST['result']; ?>
|
||||
<h4>Résultat(s)</h4>
|
||||
<?php if (isset($_POST['result'])) {
|
||||
echo $_POST['result'];
|
||||
} else {
|
||||
echo "Rien à afficher";
|
||||
} ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user