Bonjour,
j’essaie désespérément de comprendre. Je m'explique j'aimerais fermer automatique une fenêtre modale dans laquelle est affiché : option=com_users&view=login&tmpl=component
Mon appel ce fait par un bouton :
mon script est le suivant :
aillant trouvé ceci sur internet : https://docs.joomla.org/How_do_you_r...ssful_login%3F
j'ai créé un default_login.php avec ceci dedans :
Mais là je suis perdu. Comment l'appeler ?
Merci pour votre aide
j’essaie désespérément de comprendre. Je m'explique j'aimerais fermer automatique une fenêtre modale dans laquelle est affiché : option=com_users&view=login&tmpl=component
Mon appel ce fait par un bouton :
$this->class ="log-modal";
$this->element['url'] = "index.php?option=com_users&view=login&tmpl=co mpon ent";
$this->element['url'] = "index.php?option=com_users&view=login&tmpl=co mpon ent";
var Modal = $(".log-modal").colorbox({
iframe:true,
width:"400px",
height:"450px",
onOpen:function(){ },
onLoad:function(){ },
onComplete:function(){},
onCleanup:function(){},
onClosed:function(){ location.href = location.href }
});
iframe:true,
width:"400px",
height:"450px",
onOpen:function(){ },
onLoad:function(){ },
onComplete:function(){},
onCleanup:function(){},
onClosed:function(){ location.href = location.href }
});
j'ai créé un default_login.php avec ceci dedans :
<?php
JHtml::_('behavior.keepalive');
$return = base64_encode('index.php?option=com_nglibrary&view =books&id=2');
?>
<div id="nglibrary">
<div id="profile" class="login">
<h2><?php echo JText::_('LOGIN'); ?></h2>
<p><?php echo JText::_('LOGIN_MSG'); ?></p>
<div class="row-fluid">
<div class="span2 offset4">
<form action="<?php echo JRoute::_('index.php'); ?>" method="post" class="form-vertical">
<input class="btn btn-primary" type="submit" name="Submit" class="btn btn-primary" value="<?php echo JText::_('JLOGIN'); ?>" />
<input type="hidden" name="return" value="<?php echo $return; ?>" />
<?php echo JHtml::_('form.token'); ?>
</form>
</div>
</div>
</div>
</div>
JHtml::_('behavior.keepalive');
$return = base64_encode('index.php?option=com_nglibrary&view =books&id=2');
?>
<div id="nglibrary">
<div id="profile" class="login">
<h2><?php echo JText::_('LOGIN'); ?></h2>
<p><?php echo JText::_('LOGIN_MSG'); ?></p>
<div class="row-fluid">
<div class="span2 offset4">
<form action="<?php echo JRoute::_('index.php'); ?>" method="post" class="form-vertical">
<input class="btn btn-primary" type="submit" name="Submit" class="btn btn-primary" value="<?php echo JText::_('JLOGIN'); ?>" />
<input type="hidden" name="return" value="<?php echo $return; ?>" />
<?php echo JHtml::_('form.token'); ?>
</form>
</div>
</div>
</div>
</div>
Merci pour votre aide
Commentaire