本文整理汇总了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;
}
示例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;
}