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


PHP Supplier::get_all_suppliers_Database_Array方法代碼示例

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


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

示例1: chose_supplier_AJAX

 protected function chose_supplier_AJAX()
 {
     // запоминаем id уже выбранных поставщиков
     $already_chosen_arr = explode(',', $_POST['already_chosen']);
     $suppliers_arr = Supplier::get_all_suppliers_Database_Array();
     $html = '<form>';
     $html .= '<table id="chose_supplier_tbl">';
     $n = 0;
     for ($i = 1; $i < count($suppliers_arr); $i++) {
         $html .= '<tr>';
         for ($j = 1; $j <= 3; $j++) {
             $checked = '';
             foreach ($already_chosen_arr as $key => $id) {
                 if (isset($suppliers_arr[$i]['id'])) {
                     if ($suppliers_arr[$i]['id'] == trim($id)) {
                         $checked = 'class="checked"';
                     }
                 }
             }
             $html .= isset($suppliers_arr[$i]['nickName']) ? '<td ' . $checked . ' data-id="' . $suppliers_arr[$i]['id'] . '">' . $suppliers_arr[$i]['nickName'] . "</td>" : "<td></td>";
             $i++;
         }
         $html .= '</tr>';
     }
     $html .= '</table>';
     $html .= '<input type="hidden" name="AJAX" value="change_supliers_info_dop_data">';
     $html .= '<input type="hidden" name="id_dop_data" value="' . $_POST['id_dop_data'] . '">';
     $html .= '<input type="hidden" name="suppliers_id" value="' . $_POST['already_chosen'] . '">';
     $html .= '<input type="hidden" name="suppliers_name" value="' . $_POST['suppliers_name'] . '">';
     $html .= '</form>';
     echo $html;
     exit;
 }
開發者ID:apelburg,項目名稱:test,代碼行數:33,代碼來源:cabinet_general_class.php

示例2: chose_supplier_AJAX

 private function chose_supplier_AJAX()
 {
     // выбор поставщика
     // запоминаем id уже выбранных поставщиков
     $already_chosen_arr = explode(',', $_POST['already_chosen']);
     $suppliers_arr = Supplier::get_all_suppliers_Database_Array();
     $html = '<form>';
     $html .= '<table id="chose_supplier_tbl">';
     $n = 0;
     for ($i = 1; $i < count($suppliers_arr); $i++) {
         $html .= '<tr>';
         for ($j = 1; $j <= 3; $j++) {
             $checked = '';
             foreach ($already_chosen_arr as $key => $id) {
                 if (isset($suppliers_arr[$i]['id']) && $suppliers_arr[$i]['id'] == trim($id)) {
                     $checked = 'class="checked"';
                 }
             }
             $html .= isset($suppliers_arr[$i]['nickName']) ? '<td ' . $checked . ' data-id="' . $suppliers_arr[$i]['id'] . '">' . $suppliers_arr[$i]['nickName'] . "</td>" : "<td></td>";
             $i++;
         }
         $html .= '</tr>';
     }
     $html .= '</table>';
     $html .= '<input type="hidden" name="AJAX" value="change_supliers_info_dop_data">';
     $html .= '<input type="hidden" name="dop_data_id" value="">';
     $html .= '<input type="hidden" name="suppliers_id" value="">';
     $html .= '<input type="hidden" name="suppliers_name" value="">';
     $html .= '</form>';
     // echo $html;
     echo '{"response":"show_new_window","title":"Выберите поставщика","height":"800","html":"' . base64_encode($html) . '"}';
     // exit;
 }
開發者ID:apelburg,項目名稱:test,代碼行數:33,代碼來源:rt_position_no_catalog_class.php


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