blob: 9e9b8b6573ce732100f72bc93555270d1aea1628 (
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
|
<?php
/**
* @version $Header: /cvsroot/bitweaver/_bit_articles/list_topics.php,v 1.3 2005/10/30 19:48:40 lsces Exp $
* @package article
* @subpackage functions
*/
/**
* Initialization
*/
require_once( '../bit_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' ) );
?>
|