blob: a104dd89e4c1b6da9600c11e02d8a77d2553c945 (
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
38
39
|
<?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/setup_inc.php' );
require_once( CONTACT_PKG_PATH.'Contact.php' );
$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->assignByRef('listInfo', $_REQUEST['listInfo']);
$smarty->assignByRef('list', $contacts);
// Display the template
$gBitSystem->display( 'bitpackage:contact/list_contacts.tpl', NULL, array( 'display_mode' => 'list' ));
?>
|