blob: baf5592ab2e06512d8e9e832c7f15b23dd5c6143 (
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
|
<?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
* @author spider <spider@steelsun.com>
*
* @package newsletters
*/
/**
* Initialization
*/
require_once NEWSLETTERS_PKG_CLASS_PATH.'BitNewsletter.php';
$listHash = [ 'registration_optin' => TRUE ];
$newsletters = BitNewsletter::getList( $listHash );
global $gBitSmarty;
$gBitSmarty->assign('newsletters',$newsletters);
?>
|