当前位置: 首页>>代码示例>>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;未经允许,请勿转载。