blob: de3ec3ec5aaa94789d3502a8ab2dc446d0254930 (
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
40
41
42
43
44
45
46
47
48
|
<?php
/**
* $Header: /cvsroot/bitweaver/_bit_contact/index.php,v 1.7 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' );
include_once( CONTACT_PKG_PATH.'Contact.php' );
$gBitSystem->isPackageActive('contact', TRUE);
if( !empty( $_REQUEST['content_id'] ) ) {
$gContact = new Contact( null, $_REQUEST['content_id'] );
$gContact->load();
$gContact->loadXrefList();
} else {
$gContact = new Contact();
}
// Comments engine!
if( $gBitSystem->isFeatureActive( 'feature_contact_comments' ) ) {
$comments_vars = Array('page');
$comments_prefix_var='contact note:';
$comments_object_var='page';
$commentsParentId = $gContent->mContentId;
$comments_return_url = CONTACT_PKG_URL.'index.php?content_id='.$gContact->mContentId;
include_once( LIBERTY_PKG_PATH.'comments_inc.php' );
}
$gBitSmarty->assign_by_ref( 'contactInfo', $gContact->mInfo );
if ( $gContact->mContactId ) {
$gBitSystem->setBrowserTitle("Contact List Item");
$gBitSystem->display( 'bitpackage:contact/show_contact.tpl', NULL, array( 'display_mode' => 'display' ));
} else {
header ("location: ".CONTACT_PKG_URL."list.php");
die;
}
?>
|