djmortis Posted May 21, 2014 Share Posted May 21, 2014 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 More sharing options...
djmortis Posted May 21, 2014 Author Share Posted May 21, 2014 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 More sharing options...
Recommended Posts