blob: 833638be4ecccc9014be30ee187fce65e504e503 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<?php
/**
* @version $Header: /cvsroot/bitweaver/_bit_contact/list_contacts.php,v 1.4 2010/02/08 21:27:22 wjames5 Exp $
*
* Copyright (c) 2006 bitweaver.org
* 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
*
* @package contact
* @subpackage functions
*/
/**
* required setup
*/
require_once '../kernel/includes/setup_inc.php';
use Bitweaver\Contact\Contact;
$gBitSystem->isPackageActive('contact', TRUE);
// Now check permissions to access this page
$gBitSystem->verifyPermission('p_read_contact');
$contacts = new Contact();
if ( empty( $_REQUEST["sort_mode"] ) ) {
$sort_mode = 'organisation_asc';
}
// Get a list of Contacts
$contacts->getList( $_REQUEST );
$smarty->assign('listInfo', $_REQUEST['listInfo']);
$smarty->assign('list', $contacts);
// Display the template
$gBitSystem->display( 'bitpackage:contact/list_contacts.tpl', NULL, [ 'display_mode' => 'list' ]);
|