Module redirection : test du menu surgissant avec nouvelle formulation

This commit is contained in:
fredtempez 2019-02-19 23:54:17 +01:00
parent 03a9f4dc37
commit 0f8778dc1b
2 changed files with 18 additions and 23 deletions

View File

@ -19,7 +19,7 @@ class redirection extends common {
'index' => self::GROUP_VISITOR
];
const REDIRECTION_VERSION = '1.1';
const REDIRECTION_VERSION = '1.2';
/**
* Configuration

View File

@ -11,26 +11,21 @@
* @license GNU General Public License, version 3
* @link http://zwiicms.com/
*
*
*
*
* if (document.referrer.indexOf("edit") === -1)
* {
* core.confirm(
* "Souhaitez-vous accéder à l'interface de modification de la page ? En cas de refus, vous serez redirigé vers l'URL saisie dans le module de redirection.",
* function() {
* $(location).attr("href", "<?php echo helper::baseUrl(); ?>page/edit/<?php echo $this->getUrl(0); ?>");
* },
* function() {
* $(location).attr("href", "<?php echo helper::baseUrl() . $this->getUrl(); ?>/force");
* }
* );
* }
* else
* {
* $(location).attr("href", "<?php echo helper::baseUrl(); ?>");
* }
**/
**/
self.location='<?php echo helper::baseUrl(); ?>page/edit/<?php echo $this->getUrl(0); ?>';
if (document.referrer.indexOf("edit") === -1)
{
core.confirm(
"OUI pour accéder à l\'écran d'édition du module - NON pour tester le lien saisi.",
function() {
$(location).attr("href", "<?php echo helper::baseUrl(); ?>page/edit/<?php echo $this->getUrl(0); ?>");
},
function() {
$(location).attr("href", "<?php echo helper::baseUrl() . $this->getUrl(); ?>/force");
}
);
}
else
{
$(location).attr("href", "<?php echo helper::baseUrl(); ?>");
}