summaryrefslogtreecommitdiff
path: root/list_contracts.php
blob: d3eef46ffcac6d62b6e75dea3283ef67b2b9f84d (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
<?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 ( !isset($_REQUEST['contract'])) {
	$_REQUEST['contract'] = 0;
}

// Get a list of Contracts 
$contracts = $contacts->getContractList( $_REQUEST['contract'] );

$gBitSmarty->assign('listInfo', $_REQUEST['listInfo']);
$gBitSmarty->assign('list', $contracts);

// Display the template
$gBitSystem->display( 'bitpackage:contact/list_contracts.tpl', NULL, array( 'display_mode' => 'list' ));