Jump to content

Recommended Posts

Buenas, me gustaría saber como validar el móvil en Prestashop para que sólo acepte móviles españoles.

 

En php con una fuciona sería...

 

function validarTelefono($telefono)
{
return preg_match('/^[9|8|6|7][0-9]{8}$/', $telefono);
}

 

En html5 sería con pattern.

 

Pero en Prestashop, ¿como se hace?

 

Link to comment
Share on other sites

Solucionado, en classes, en validate.php cambiar...

 

     public static function isPhoneNumber($number)
     {
         return preg_match('/ ^ - * $ / [0-9 ().]', $number);
     }

 

Por...

 

public static function isPhoneNumber($number)
{
return preg_match('/^[6|7][0-9]{8}$/', $number);
}
Link to comment
Share on other sites

  • nadie locked this topic
Guest
This topic is now closed to further replies.
×
×
  • Create New...