1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-02 20:57:26 +02:00

#3767 - Forum RSS feed, clarify feeds descriptions

This commit is contained in:
Tijn Kuyper
2019-09-04 17:01:30 +02:00
parent a5ddc93568
commit dc85026196

View File

@@ -19,77 +19,77 @@ class forum_rss // plugin-folder + '_rss'
$config[] = array( $config[] = array(
'name' => "Forum / threads", 'name' => "Forum / All forum topics",
'url' => '6', 'url' => '6',
'topic_id' => '', 'topic_id' => '',
'path' => 'forum|threads', 'path' => 'forum|threads',
'text' => 'this is the rss feed for the forum_threads entries', 'text' => 'This feed lists all the forum topics.',
'class' => '1', 'class' => '1',
'limit' => '9', 'limit' => '9',
); );
//forum threads (new url) //forum threads (new url)
$config[] = array( $config[] = array(
'name' => "Forum / threads", 'name' => "Forum / All forum topics",
'url' => 'forumthreads', 'url' => 'forumthreads',
'topic_id' => '', 'topic_id' => '',
// 'path' => 'forum|threads', // 'path' => 'forum|threads',
'text' => 'this is the rss feed for the forum_threads entries', 'text' => 'This feeds lists all the forum topics.',
'class' => '0', 'class' => '0',
'limit' => '9', 'limit' => '9',
); );
//forum posts (old url) //forum posts (old url)
$config[] = array( $config[] = array(
'name' => "Forum / posts", 'name' => "Forum / all forum posts",
'url' => '7', 'url' => '7',
'topic_id' => '', 'topic_id' => '',
// 'path' => 'forum|posts', // 'path' => 'forum|posts',
'text' => 'this is the rss feed for the forum_posts entries', 'text' => 'This feed lists all the forum posts.',
'class' => '1', 'class' => '1',
'limit' => '9', 'limit' => '9',
); );
//forum posts (new url) //forum posts (new url)
$config[] = array( $config[] = array(
'name' => "Forum / posts", 'name' => "Forum / all forum posts",
'url' => 'forumposts', 'url' => 'forumposts',
'topic_id' => '', 'topic_id' => '',
// 'path' => 'forum|posts', // 'path' => 'forum|posts',
'text' => 'this is the rss feed for the forum_posts entries', 'text' => 'This feed lists all the forum posts.',
'class' => '0', 'class' => '0',
'limit' => '9', 'limit' => '9',
); );
//forum topic (old url) //forum topic (old url)
$config[] = array( $config[] = array(
'name' => "Forum / topic", 'name' => "Forum / All posts of a specific forum topic",
'url' => '8', 'url' => '8',
'topic_id' => '*', 'topic_id' => '*',
// 'path' => 'forum|topic', // 'path' => 'forum|topic',
'text' => 'this is the rss feed for the forum_topic entries', 'text' => 'This feed lists all posts in a specific forum topic.',
'class' => '1', 'class' => '1',
'limit' => '9', 'limit' => '9',
); );
//forum topic (new url) //forum topic (new url)
$config[] = array( $config[] = array(
'name' => "Forum / topic", 'name' => "Forum / All posts of a specific forum topic",
'url' => 'forumtopic', 'url' => 'forumtopic',
'topic_id' => '*', 'topic_id' => '*',
// 'path' => 'forum|topic', // 'path' => 'forum|topic',
'text' => 'this is the rss feed for the forum_topic entries', 'text' => 'This feed lists all posts in a specific forum topic.',
'class' => '0', 'class' => '0',
'limit' => '9', 'limit' => '9',
); );
//forum name (old url) //forum name (old url)
$config[] = array( $config[] = array(
'name' => "Forum / name", 'name' => "Forum / All forums",
'url' => '11', 'url' => '11',
'topic_id' => '*', 'topic_id' => '*',
// 'path' => 'forum|name', // 'path' => 'forum|name',
'text' => 'this is the rss feed for the forum_name entries', 'text' => 'This feed lists all the forums',
'class' => '1', 'class' => '1',
'limit' => '9', 'limit' => '9',
); );
@@ -100,7 +100,7 @@ class forum_rss // plugin-folder + '_rss'
'url' => 'forumname', 'url' => 'forumname',
'topic_id' => '*', 'topic_id' => '*',
// 'path' => 'forum|name', // 'path' => 'forum|name',
'text' => 'this is the rss feed for the forum_name entries', 'text' => 'This feed lists all the forums',
'class' => '0', 'class' => '0',
'limit' => '9', 'limit' => '9',
); );