当前位置: 首页>>代码示例>>PHP>>正文


PHP wpshop_tools::is_phone方法代码示例

本文整理汇总了PHP中wpshop_tools::is_phone方法的典型用法代码示例。如果您正苦于以下问题:PHP wpshop_tools::is_phone方法的具体用法?PHP wpshop_tools::is_phone怎么用?PHP wpshop_tools::is_phone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在wpshop_tools的用法示例。


在下文中一共展示了wpshop_tools::is_phone方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: validateForm

 /** Valide les champs d'un formlaire
  * @param array $array : Champs a lire
  * @return boolean
  */
 function validateForm($array, $values = array(), $from = '', $partial = false, $user = 0)
 {
     $user_id = empty($user) ? get_current_user_id() : $user;
     foreach ($array as $attribute_id => $attribute_definition) {
         $values_array = !empty($values) ? $values : $_POST['attribute'];
         $value = !empty($values_array[$attribute_definition['data_type']][$attribute_definition['name']]) ? $values_array[$attribute_definition['data_type']][$attribute_definition['name']] : '';
         // Si le champ est obligatoire
         if (empty($value) && $attribute_definition['required'] == 'yes') {
             $this->add_error(sprintf(__('The field "%s" is required', 'wpshop'), __($attribute_definition['label'], 'wpshop')));
         }
         if ($partial == false && $attribute_definition['_need_verification'] == 'yes') {
             $value2 = $values_array[$attribute_definition['data_type']][$attribute_definition['name'] . '2'];
             if ($value != $value2) {
                 $this->add_error(sprintf(__('The  "%s" confirmation is incorrect', 'wpshop'), __($attribute_definition['label'], 'wpshop')));
             }
         }
         if (!empty($value) && !empty($attribute_definition['type'])) {
             switch ($attribute_definition['frontend_verification']) {
                 case 'email':
                     $email_exist = email_exists($value);
                     if (!is_email($value)) {
                         $this->add_error(sprintf(__('The field "%s" is incorrect', 'wpshop'), $attribute_definition['label']));
                     } elseif (empty($from) && ($user_id > 0 && !empty($email_exist) && $email_exist !== $user_id || !empty($email_exist) && $user_id <= 0)) {
                         $this->add_error(__('An account is already registered with your email address. Please login.', 'wpshop'));
                     }
                     break;
                 case 'postcode':
                     if (!wpshop_tools::is_postcode($value)) {
                         $this->add_error(sprintf(__('The field "%s" is incorrect', 'wpshop'), __($attribute_definition['label'], 'wpshop')));
                     }
                     break;
                 case 'phone':
                     if (!wpshop_tools::is_phone($value)) {
                         $this->add_error(sprintf(__('The field "%s" is incorrect', 'wpshop'), __($attribute_definition['label'], 'wpshop')));
                     }
                     break;
                 case 'username':
                     $username_exists = username_exists($value);
                     // On s'assure que le nom d'utilisateur est libre
                     if (!validate_username($value)) {
                         $this->add_error(__('Invalid email/username.', 'wpshop'));
                     } elseif ($user_id > 0 && !empty($username_exists) && $username_exists !== $user_id || !empty($username_exists) && $user_id <= 0) {
                         $this->add_error(__('An account is already registered with that username. Please choose another.', 'wpshop'));
                     }
                     break;
             }
         }
     }
     return $this->error_count() == 0;
 }
开发者ID:fedeB-IT-dept,项目名称:fedeB_website,代码行数:54,代码来源:form_management.class.php


注:本文中的wpshop_tools::is_phone方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。