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


PHP Contacts::getList方法代码示例

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


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

示例1: Contacts

$gBitSystem->verifyPackage('contacts');
$gBitSystem->verifyPermission('p_contacts_view');
$gContent = new Contacts();
/*
if($feature_listContacts != 'y') {
  $gBitSmarty->assign('msg',tra("This feature is disabled"));
  $gBitSystem->display( 'error.tpl' , NULL, array( 'display_mode' => 'list' ));
  die;
}
*/
/*
// Now check permissions to access this page
if(!$gBitUser->( 'contact_p_view' )) {
  $gBitSmarty->assign('msg',tra("Permission denied you cannot view contacts"));
  $gBitSystem->display( 'error.tpl' , NULL, array( 'display_mode' => 'list' ));
  die;
}
*/
if (empty($_REQUEST["sort_mode"])) {
    $_REQUEST["sort_mode"] = 'surname_asc';
}
$contact_type = $gContent->getContactsTypeList();
$gBitSmarty->assign_by_ref('contact_type', $contact_type);
$listHash = $_REQUEST;
// Get a list of matching contact entries
$listcontacts = $gContent->getList($listHash);
$gBitSmarty->assign_by_ref('listcontacts', $listcontacts);
$gBitSmarty->assign_by_ref('listInfo', $listHash['listInfo']);
$gBitSystem->setBrowserTitle("View Contacts List");
// Display the template
$gBitSystem->display('bitpackage:contacts/list.tpl', NULL, array('display_mode' => 'list'));
开发者ID:bitweaver,项目名称:contacts,代码行数:31,代码来源:list.php

示例2: Contacts

<?php

// $Header$
// Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See below for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details.
// Initialization
require_once '../kernel/setup_inc.php';
require_once CONTACTS_PKG_PATH . 'Contacts.php';
$gBitSystem->isPackageActive('contacts', TRUE);
// Now check permissions to access this page
$gBitSystem->verifyPermission('p_contacts_view');
$contact = new Contacts(0);
if (empty($_REQUEST["sort_mode"])) {
    $sort_mode = 'title_asc';
}
// Get a list of Contacts
$contact->getList($_REQUEST);
$smarty->assign_by_ref('listInfo', $_REQUEST['listInfo']);
$smarty->assign_by_ref('list', $_REQUEST["data"]);
// Display the template
$gBitSystem->display('bitpackage:contacts/list_contacts.tpl', NULL, array('display_mode' => 'list'));
开发者ID:bitweaver,项目名称:contacts,代码行数:22,代码来源:list_contacts.php


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