Jump to content

vérification date


Recommended Posts

Bonjour à tous ,je recherche une solution pour vérifier que mon utilisateur sont majeur .

 

Utilise la commande html5 suivante pour demander la date de naissance :<input type="date" max="2012-06-25" min="2011-08-13" name="the_date">

 

Comment faire pour vérifier que utilisateur est majeur ?

 

Merci avance pour votre aide .

Link to comment
Share on other sites

Tu peux facilement faire ça avec la méthode "diff" de la classe Date en PHP

 

$form_date = date('Y-m-d', strtotime($_POST['the_date']));
$diff = $form_date->diff('now');

Tu peux ensuite tester la valeur de diff pour définir si l'utilisateur est majeur

Edited by justtodownloadthings (see edit history)
Link to comment
Share on other sites

merci pour ta réponse ,apres vérification mon module utilise un fichier .tpl qui est le suivant :

<div id="boxes"><div style=" background-image:url({$base_dir}modules/hopopup/img/disclaimer.jpg); display: none;" id="dialog" class="window">
  <table width="980" height="521" border="0">
    <tr>
      <td width="285" height="63" valign="top"> </td>
      <td width="625" align="center" valign="top"><a href="{$base_dir}" title="{$shop_name|escape:'htmlall':'UTF-8'}"><img src="{$img_ps_dir}logo.jpg" alt="{$shop_name|escape:'htmlall':'UTF-8'}" /></td>
      <td width="56" align="left" valign="top"> </td>
    </tr>
    <tr>
      <td valign="top"> </td>
      <td rowspan="3" align="left" valign="top"><div style="height:385px;width:615px;overflow:auto;"><br /><p align="center"><font color="#FF0000" size="5" style="text-transform: uppercase; font-weight: bold;">{$cms_title}</font></p><font color="#000000">{$cms_content}</font></p></div></td>
      <td align="left" valign="top"> </td>
    </tr>
    <tr>
      <td height="153" valign="top"> </td>
      <td align="left" valign="top"> </td>
    </tr>
    <tr>
      <td height="169" align="right" valign="bottom"> </td>
      <td align="left" valign="top"> </td>
    </tr>
    <tr>
      <td height="21" valign="top"> </td>
      <td align="left" valign="top"><div align="center">
        <table border="0">
          <tr>
            <td><input type="submit" value="{$hopopup_enter}" onclick=creaCook() class="close" id="bouton_submit">   </td>
            <td><form method="link" action="{$hopopup_url}"> <input type="submit" value="{$hopopup_exit}" id="bouton_exit"></form></td>
          </tr>
        </table>
      </div>
                  <div align="right">{foreach from=$languages key=k item=language name="languages"}
			
			{if $language.iso_code != $lang_iso}
				{assign var=indice_lang value=$language.id_lang}
				{if isset($lang_rewrite_urls.$indice_lang)}
					<a href="{$lang_rewrite_urls.$indice_lang|escape:htmlall}" title="{$language.name}">
				{else}
					<a href="{$link->getLanguageLink($language.id_lang)|escape:htmlall}" title="{$language.name}">

				{/if}
			{/if}
					<img src="{$img_lang_dir}{$language.id_lang}.jpg" alt="{$language.iso_code}" width="16" height="11" />
			{if $language.iso_code != $lang_iso}
				</a>
			{/if}
			
		{/foreach}</div></td>
            <td align="left" valign="top"> </td>
    </tr>
  </table></div>
<!-- Masque pour couvrir la totalité de l'écran -->
<div style="width: 1478px; height: 602px; display: none; opacity: 1;" id="mask"></div>
</div>

Je doit mettre le php ou ?

 

Merci avance pour ton aide

Edited by metzger (see edit history)
Link to comment
Share on other sites

Avant toute chose, il n'est pas conseillé de développer directement dans le module. Dès que tu vas le mettre à jour, tu vas surement perdre tes modifications.

Cela étant dit, tu dois placer ton code PHP dans le controller qui va récupérer le formulaire.

Ton controller sera dans le dossier module/lenomdetonmondule et il faut ensuite chercher dans le dossier front ou hook. Tu devrais pouvoir "deviner" quel controller modifier en fonction de son nom. 

Tu peux aussi faire une rechercher dans ton dossier controller sur l'id ou le name de ton formulaire.

 

PS : il faut remplacer dans mon exemple le $_POST par Tools::getValue()

Edited by justtodownloadthings (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...