本文整理汇总了PHP中Device::getTable方法的典型用法代码示例。如果您正苦于以下问题:PHP Device::getTable方法的具体用法?PHP Device::getTable怎么用?PHP Device::getTable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Device
的用法示例。
在下文中一共展示了Device::getTable方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Device
<?php
require_once PLUGIN_DIR_PATH . 'admin/device.class.php';
require_once PLUGIN_DIR_PATH . 'admin/room.class.php';
require_once PLUGIN_DIR_PATH . 'admin/subject.class.php';
$args = ['fields' => ['display_name', 'id']];
$list_user = get_users($args);
$device = new Device();
$subject = new Subject();
$room = new Room();
$list_device = $device->getTable($where = "", $orderField = "matb", $groupByField = "");
$list_room = $room->getTable($where = "", $orderField = "maphong", $groupByField = "");
$list_subject = $subject->getTable($where = "", $orderField = "mamon", $groupByField = "");
?>
<div id="wpbody" role="main">
<div id="wpbody-content" aria-label="Nội dung chính" tabindex="0" style="overflow: hidden;">
<div class="wrap">
<h1><?php
_e('Quản lý thiết bị phòng thực hành', KC_DOMAIN);
?>
</h1>
<div id="welcome-panel" class="welcome-panel">
<input type="hidden" id="welcomepanelnonce" name="welcomepanelnonce" value="d0b9b07e0f"> <a class="welcome-panel-close" href="http://manager.dev/wp-admin/?welcome=0">Hủy</a>
<div class="welcome-panel-content">
<h3><?php
_e('Quản lý thiết bị môn học!', KC_DOMAIN);
?>
</h3>
示例2: Device
<?php
require_once PLUGIN_DIR_PATH . 'admin/device.class.php';
require_once PLUGIN_DIR_PATH . 'admin/room.class.php';
require_once PLUGIN_DIR_PATH . 'admin/TypeDevice.class.php';
require_once PLUGIN_DIR_PATH . 'admin/provide.class.php';
$class = new Device();
$room = new Room();
$type_device = new TypeDevice();
$provide = new Provide();
$data = $class->getTable($where = "", $orderField = "matb", $groupByField = "", Global_Define::KC_MANAGEMENT_ORDER . ' LIMIT ' . $class->num_item);
$num_page = $class->CountPage();
$list_room = $room->getTable($where = "", $orderField = "maphong", $groupByField = "", '');
$list_type = $type_device->getTable($where = "", $orderField = "maloaitb", $groupByField = "", '');
$list_provide = $provide->getTable($where = "", $orderField = "mancc", $groupByField = "", '');
?>
<div id="wpbody" role="main">
<div id="wpbody-content" aria-label="Nội dung chính" tabindex="0" style="overflow: hidden;">
<div class="wrap">
<h1><?php
_e('Quản lý thiết bị phòng thực hành', KC_DOMAIN);
?>
</h1>
<div id="welcome-panel" class="welcome-panel">
<input type="hidden" id="welcomepanelnonce" name="welcomepanelnonce" value="d0b9b07e0f"> <a class="welcome-panel-close" href="http://manager.dev/wp-admin/?welcome=0">Hủy</a>
<div class="welcome-panel-content">
<h3><?php
_e('CHÀO MỪNG BẠN TỚI CHƯƠNG TRÌNH QUẢN LÝ THIẾT BỊ PHÒNG THỰC HÀNH!', KC_DOMAIN);
?>