blob: 2425aa4f620b356b0b9b0e762083b970c7c78eb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
/**
* @version $Header$
* @package articles
* @subpackage functions
*/
/**
* Initialization
*/
require_once '../kernel/setup_inc.php';
include_once( ARTICLES_PKG_PATH.'BitArticle.php' );
include_once( ARTICLES_PKG_PATH.'lookup_article_topic_inc.php' );
// Is package installed and enabled
$gBitSystem->verifyPackage( 'articles' );
$topics = BitArticleTopic::getTopicList();
$gBitSmarty->assign( 'topics', $topics );
$gBitSystem->display( 'bitpackage:articles/list_topics.tpl', tra( 'List Topics' ) , array( 'display_mode' => 'list' ));
|