当前位置: 首页>>代码示例>>PHP>>正文


PHP Warehouse::getClientList方法代码示例

本文整理汇总了PHP中Warehouse::getClientList方法的典型用法代码示例。如果您正苦于以下问题:PHP Warehouse::getClientList方法的具体用法?PHP Warehouse::getClientList怎么用?PHP Warehouse::getClientList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Warehouse的用法示例。


在下文中一共展示了Warehouse::getClientList方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: Warehouse

 */
/**
 * required setup
 */
require_once '../kernel/setup_inc.php';
$gBitSystem->verifyPackage('warehouse');
if (!$gBitUser->hasUserPermission('p_warehouse_view')) {
    $gBitSystem->fatalError('You do not have prermission to view this package');
}
require_once WAREHOUSE_PKG_PATH . 'Warehouse.php';
global $gBitSystem, $gBitSmarty;
$gWarehouse = new Warehouse();
/* Get a list of galleries which matches the imput paramters (default is to list every gallery in the system) */
$_REQUEST['root_only'] = TRUE;
/* Process the input parameters this page accepts */
if (!empty($_REQUEST['warehouse_id'])) {
    $gBitSmarty->assign_by_ref('gWarehouseId', $_REQUEST['warehouse_id']);
    $template = 'list_warehouses.tpl';
} else {
    $template = 'list_clients.tpl';
}
$warehouseList = $gWarehouse->getList($_REQUEST);
// Pagination Data
// $gBitSmarty->assign_by_ref( 'listInfo', $_REQUEST['listInfo'] );
$gBitSmarty->assign('warehouseList', $warehouseList);
$clientList = $gWarehouse->getClientList($_REQUEST);
$gBitSmarty->assign('clientList', $clientList);
// Display the template
$gDefaultCenter = "bitpackage:warehouse/{$template}";
$gBitSmarty->assign_by_ref('gDefaultCenter', $gDefaultCenter);
$gBitSystem->display('bitpackage:kernel/dynamic.tpl', 'List Client Warehouse Space', array('display_mode' => 'list'));
开发者ID:bitweaver,项目名称:warehouse,代码行数:31,代码来源:list_clients.php


注:本文中的Warehouse::getClientList方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。