當前位置: 首頁>>代碼示例>>PHP>>正文


PHP wpshop_tools::is_postcode方法代碼示例

本文整理匯總了PHP中wpshop_tools::is_postcode方法的典型用法代碼示例。如果您正苦於以下問題:PHP wpshop_tools::is_postcode方法的具體用法?PHP wpshop_tools::is_postcode怎麽用?PHP wpshop_tools::is_postcode使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在wpshop_tools的用法示例。


在下文中一共展示了wpshop_tools::is_postcode方法的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_postcode方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。