Cheetah
ChForumSiteMaps.php
Go to the documentation of this file.
1 <?php
2 
8 ch_import('ChWsbSiteMaps');
9 
10 define('CH_ORCA_INTEGRATION', 'cheetah');
11 
12 require_once(CH_DIRECTORY_PATH_ROOT . 'modules/cheetah/forum/inc/header.inc.php');
13 
18 {
19  protected function __construct($aSystem)
20  {
21  parent::__construct($aSystem);
22 
23  $this->_aQueryParts = array (
24  'fields' => "`t`.`topic_id`, `t`.`topic_uri`, `t`.`last_post_when`", // fields list
25  'field_date' => "last_post_when", // date field name
26  'field_date_type' => "timestamp", // date field type
27  'table' => "`ch_forum_topic` AS `t`", // table name
28  'join' => " INNER JOIN `ch_forum` AS `f` ON (`f`.`forum_id` = `t`.`forum_id` AND `f`.`forum_type` = 'public')", // join SQL part
29  'where' => "AND `t`.`topic_hidden` = 0 AND `t`.`topic_posts` > 0", // SQL condition, without WHERE
30  'order' => " `t`.`last_post_when` ASC ", // SQL order, without ORDER BY
31  );
32  }
33 
34  protected function _genUrl ($a)
35  {
36  return CH_WSB_URL_ROOT . 'forum/' . sprintf($GLOBALS['gConf']['rewrite']['topic'], $a['topic_uri']);
37  }
38 
39 }
ch_import
ch_import($sClassName, $aModule=array())
Definition: utils.inc.php:1218
ChForumSiteMaps\_genUrl
_genUrl($a)
Definition: ChForumSiteMaps.php:34
php
ChForumSiteMaps\__construct
__construct($aSystem)
Definition: ChForumSiteMaps.php:19
ChForumSiteMaps
Definition: ChForumSiteMaps.php:18
ChWsbSiteMaps
Definition: ChWsbSiteMaps.php:32
$GLOBALS
$GLOBALS['iAdminPage']
Definition: advanced_settings.php:10