blob: eec195f147e871c6a09c4552aa1a6533081ef83a (
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
|
<?php
/**
* Copyright (c) 2005 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
*
* created 2005/12/10
*
* @package newsletters
* @author spider <spider@steelsun.com>
*/
/**
* Initialization
*/
require_once( NEWSLETTERS_PKG_CLASS_PATH.'BitNewsletterEdition.php' );
if( empty( $gContent ) || !is_object( $gContent ) || !$gContent->isValid() ) {
$editionId = !empty( $_REQUEST['edition_id'] ) ? $_REQUEST['edition_id'] : NULL;
$conId = !empty( $_REQUEST['content_id'] ) ? $_REQUEST['content_id'] : NULL;
$nlId = !empty( $_REQUEST['nl_id'] ) ? $_REQUEST['nl_id'] : NULL;
$gContent = new BitNewsletterEdition( $editionId, $conId, $nlId );
$gContent->load();
$gBitSmarty->assign( 'gContent', $gContent );
}
|