summaryrefslogtreecommitdiff
path: root/index.php
blob: 3a5afbf30d57005505937fe61b56a51c489de84b (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
// @version  $Header$

// +----------------------------------------------------------------------+
// | Copyright (c) 2004, bitweaver.org
// +----------------------------------------------------------------------+
// | All Rights Reserved. See copyright.txt for details and a complete list of authors.
// | Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details
// |
// | For comments, please use phpdocu.sourceforge.net documentation standards!!!
// | -> see http://phpdocu.sourceforge.net/
// +----------------------------------------------------------------------+
// | Authors: spider <spider@steelsun.com>
// +----------------------------------------------------------------------+
namespace Bitweaver\Feed;

require_once '../kernel/includes/setup_inc.php';
require_once FEED_PKG_INCLUDE_PATH.'feed_lib.php';

$gBitSystem->verifyPermission( 'p_feed_master' );
$listHash['max_records'] = 100;
$actions = feed_get_actions( $listHash );
$gBitSmarty->assign( 'actions', $actions);

$gBitSystem->display( 'bitpackage:feed/master_feed.tpl', FEED_PKG_NAME );