2006-12-02 04:36:16 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
|
2015-08-22 16:40:38 +02:00
|
|
|
e107::lan('forum', "front", true);
|
2015-03-15 13:27:37 -07:00
|
|
|
// e107::lan('forum', 'English_front');
|
2006-12-02 04:36:16 +00:00
|
|
|
|
2009-12-19 17:54:00 +00:00
|
|
|
/**
|
|
|
|
* @todo - extend array to allow selection of any main forum, as well as the forum front page
|
|
|
|
*/
|
2015-03-15 13:27:37 -07:00
|
|
|
// $front_page['forum'] = array('page' =>'{e_PLUGIN}forum/forum.php', 'title' => LAN_PLUGIN_FORUM_NAME);
|
|
|
|
|
|
|
|
//v2.x spec.
|
|
|
|
class forum_frontpage // include plugin-folder in the name.
|
|
|
|
{
|
|
|
|
function config()
|
|
|
|
{
|
|
|
|
|
|
|
|
$frontPage = array(
|
|
|
|
'title' => LAN_PLUGIN_FORUM_NAME,
|
|
|
|
'page' => '{e_PLUGIN}forum/forum.php',
|
|
|
|
);
|
|
|
|
|
|
|
|
return $frontPage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-02 04:36:16 +00:00
|
|
|
|
|
|
|
?>
|