10 define(
'CH_ORCA_INTEGRATION',
'cheetah');
12 require_once(CH_DIRECTORY_PATH_ROOT .
'modules/cheetah/forum/inc/header.inc.php');
21 parent::__construct($aSystem);
23 $this->_aQueryParts = array (
24 'fields' =>
"`t`.`topic_id`, `t`.`topic_uri`, `t`.`last_post_when`",
25 'field_date' =>
"last_post_when",
26 'field_date_type' =>
"timestamp",
27 'table' =>
"`ch_forum_topic` AS `t`",
28 'join' =>
" INNER JOIN `ch_forum` AS `f` ON (`f`.`forum_id` = `t`.`forum_id` AND `f`.`forum_type` = 'public')",
29 'where' =>
"AND `t`.`topic_hidden` = 0 AND `t`.`topic_posts` > 0",
30 'order' =>
" `t`.`last_post_when` ASC ",
36 return CH_WSB_URL_ROOT .
'forum/' . sprintf(
$GLOBALS[
'gConf'][
'rewrite'][
'topic'], $a[
'topic_uri']);