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


PHP GUMP::get_key_and_value_errors方法代碼示例

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


在下文中一共展示了GUMP::get_key_and_value_errors方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: save_rooms_and_guest_info

 public function save_rooms_and_guest_info()
 {
     if (defined('DOING_AJAX') && DOING_AJAX && $_POST) {
         $data = $_POST;
         if (is_rooms_exists_on_booking($data['room_ID'], $data['booking_ID'], $data['booking_room_ID'])) {
             wp_send_json_error(array('message' => 'Room already exists'));
         } else {
             require_class('gump.class.php');
             $gump = new GUMP();
             $data['room_type_ID'] = get_room_type($data['room_ID'])->ID;
             $data = $gump->sanitize($data);
             $gump->validation_rules(array('guest' => 'required|min_len,1|max_len,100', 'room_ID' => 'required|numeric', 'room_type_ID' => 'required|numeric', 'no_of_adult' => 'required|numeric', 'no_of_child' => 'numeric', 'date_in' => 'required|date', 'date_out' => 'required|date'));
             if ($gump->run($data) !== false) {
                 if (in_array(get_booking_status($data['booking_ID']), array('NEW'))) {
                     wp_send_json_error(array('message' => 'You can\'t add room while booking is not confirmed.'));
                 } else {
                     if (is_room_available($data['room_ID'], $data['date_in'], $data['booking_room_ID']) == 0) {
                         $error['date_in'] = 'Selected room is not available on that date. Please check calendar to see availability.';
                         javacript_notices($error, '#roomsAndGuestInfoForm');
                         wp_send_json_error(array('js' => print_javascript_notices(false)));
                     } else {
                         if (do_save_rooms_and_guest_info($data) !== false) {
                             wp_send_json_success(array('message' => 'Successfully saved.'));
                         } else {
                             wp_send_json_error(array('message' => 'Error while saving.'));
                         }
                     }
                 }
             } else {
                 javacript_notices($gump->get_key_and_value_errors(true), '#roomsAndGuestInfoForm');
                 wp_send_json_error(array('js' => print_javascript_notices(false)));
             }
         }
         exit;
     }
 }
開發者ID:sergiocasquejo,項目名稱:bigdream,代碼行數:36,代碼來源:booking.class.php


注:本文中的GUMP::get_key_and_value_errors方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。