diff --git a/module/form/view/config/config.php b/module/form/view/config/config.php index 7eae904c..85db7110 100755 --- a/module/form/view/config/config.php +++ b/module/form/view/config/config.php @@ -37,13 +37,13 @@ 'displayNone formConfigLabelWrapper' ]); ?> - +
'Liste des valeurs séparées par des virgules (valeur1,valeur2,...)', 'class' => 'formConfigValues', 'classWrapper' => 'displayNone formConfigValuesWrapper' - ]); ?> + ]); ?>
@@ -82,8 +82,8 @@ !empty($this->getData(['module', $this->getUrl(0), 'config', 'user'])) || !empty($this->getData(['module', $this->getUrl(0), 'config', 'mail'])), 'help' => 'Sélectionnez au moins un groupe, un utilisateur ou saississez un email. Votre serveur doit autoriser les envois de mail.' - ]); ?> -
+ ]); ?> +
$this->getData(['module', $this->getUrl(0), 'config', 'subject']) ]); ?>
-
- +
@@ -110,7 +110,7 @@ 'label' => 'A un membre', 'selected' => array_search($this->getData(['module', $this->getUrl(0), 'config', 'user']),$module::$listUsers) ]); ?> -
+
'A une adresse email', @@ -124,7 +124,7 @@ (bool) $this->getData(['module', $this->getUrl(0), 'config', 'replyto']), 'help' => 'Cette option permet de réponse drectement à l\'expéditeur du message si celui-ci a indiqué un email valide.' - ]); ?> + ]); ?>
@@ -141,7 +141,7 @@ 'selected' => $this->getData(['module', $this->getUrl(0), 'config', 'pageId']) ]); ?> - + $this->getData(['module', $this->getUrl(0), 'config', 'captcha']) ]); ?> diff --git a/module/search/search.php b/module/search/search.php index 12542f6c..39b2f15c 100755 --- a/module/search/search.php +++ b/module/search/search.php @@ -37,13 +37,24 @@ class search extends common { // Configuration vide public function config() { + if($this->isPost()) { + // Soumission du formulaire + $this->setData(['module', $this->getUrl(0), [ + 'submitText' => $this->getInput('searchSubmitText'), + 'placeHolder' => $this->getInput('searchPlaceHolder') + ]]); + // Valeurs en sortie, affichage du formulaire + $this->addOutput([ + 'redirect' => helper::baseUrl() . $this->getUrl(), + 'notification' => 'Modifications enregistrées', + 'state' => true + ]); + } // Valeurs en sortie, affichage du formulaire $this->addOutput([ - 'view' => 'config', - 'showBarEditButton' => true, - 'showPageContent' => true + 'title' => 'Configuration du module', + 'view' => 'config' ]); - } public function index() { @@ -141,15 +152,15 @@ class search extends common { self::$resultList = $result; // Valeurs en sortie, affichage du résultat $this->addOutput([ - 'title' => '', - 'view' => 'result', + 'view' => 'index', 'notification' => $notification, - 'state' => $success + 'state' => $success, + 'showBarEditButton' => true, + 'showPageContent' => true ]); } else { // Valeurs en sortie, affichage du formulaire $this->addOutput([ - 'title' => '', 'view' => 'index', 'showBarEditButton' => true, 'showPageContent' => true diff --git a/module/search/view/config/config.php b/module/search/view/config/config.php index 974a2f45..ab7416fe 100755 --- a/module/search/view/config/config.php +++ b/module/search/view/config/config.php @@ -1,15 +1,41 @@ -
-
- 'buttonGrey', - 'href' => helper::baseUrl() . 'page/edit/' . $this->getUrl(0), - 'ico' => 'left', - 'value' => 'Retour' - ]); ?> + +
+
+ 'buttonGrey', + 'href' => helper::baseUrl() . 'page/edit/' . $this->getUrl(0), + 'ico' => 'left', + 'value' => 'Retour' + ]); ?> +
+
+ +
-
-
-
-

Aucun paramètre de configuration

-
+
+
+
+

Paramètres

+
+
+ 'Texte du bouton de soumission', + 'value' => $this->getData(['module', $this->getUrl(0), 'submitText']), + 'placeholder' => 'Rechercher' + ]); ?> +
+
+ 'Texte dans la zone de recherche', + 'value' => $this->getData(['module', $this->getUrl(0), 'placeHolder']), + 'placeholder' => 'Saisissez vos mots clés ou une phrase' + ]); ?> +
+
+
+
+
+ +
Version n° +
\ No newline at end of file diff --git a/module/search/view/index/index.php b/module/search/view/index/index.php index ddef65b9..d01ec1d6 100755 --- a/module/search/view/index/index.php +++ b/module/search/view/index/index.php @@ -2,14 +2,14 @@
-
+
'Saisissez vos mots clés ou une phrase' + 'placeholder' => $this->getData(['module',$this->getUrl(0),'placeHolder']) ? $this->getData(['module',$this->getUrl(0),'placeHolder']) : 'Saisissez vos mots clés ou une phrase' ]); ?>
-
+
'Ok' + 'value' => $this->getData(['module',$this->getUrl(0),'submitText']) ? $this->getData(['module',$this->getUrl(0),'submitText']) : 'Rechercher' ]); ?>
@@ -22,4 +22,16 @@
+ +
+
+

+ +
+
+ diff --git a/module/search/view/result/result.php b/module/search/view/result/result.php deleted file mode 100755 index b6e6cb53..00000000 --- a/module/search/view/result/result.php +++ /dev/null @@ -1,36 +0,0 @@ - -
-
-
-
- 'Saisissez vos mots clés ou une phrase', - 'value' => $module::$motclef - ]); ?> -
-
- 'Ok' - ]); ?> -
-
-
-
- $module::$motentier - ]); ?> -
-
-
-
-
-
-

- -
-
-