mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-22 02:50:00 +01:00
merging r8373 into 3.0 branch: adding a new option to hide the entire list of subforums on listforums
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8374 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
efdb743f60
commit
cc24876726
@ -202,6 +202,11 @@
|
||||
<dt><label for="forum_status">{L_FORUM_STATUS}:</label></dt>
|
||||
<dd><select id="forum_status" name="forum_status">{S_STATUS_OPTIONS}</select></dd>
|
||||
</dl>
|
||||
<dl>
|
||||
<dt><label for="display_subforum_list">{L_LIST_SUBFORUMS}:</label><br /><span>{L_LIST_SUBFORUMS_EXPLAIN}</span></dt>
|
||||
<dd><label><input type="radio" class="radio" name="display_subforum_list" value="1"<!-- IF S_DISPLAY_SUBFORUM_LIST --> id="display_subforum_list" checked="checked"<!-- ENDIF --> /> {L_YES}</label>
|
||||
<label><input type="radio" class="radio" name="display_subforum_list" value="0"<!-- IF not S_DISPLAY_SUBFORUM_LIST --> id="display_subforum_list" checked="checked"<!-- ENDIF --> /> {L_NO}</label></dd>
|
||||
</dl>
|
||||
<dl>
|
||||
<dt><label for="display_on_index">{L_LIST_INDEX}:</label><br /><span>{L_LIST_INDEX_EXPLAIN}</span></dt>
|
||||
<dd><label><input type="radio" class="radio" name="display_on_index" value="1"<!-- IF S_DISPLAY_ON_INDEX --> id="display_on_index" checked="checked"<!-- ENDIF --> /> {L_YES}</label>
|
||||
|
@ -1072,6 +1072,7 @@ function get_schema_struct()
|
||||
'forum_last_poster_name'=> array('VCHAR_UNI', ''),
|
||||
'forum_last_poster_colour'=> array('VCHAR:6', ''),
|
||||
'forum_flags' => array('TINT:4', 32),
|
||||
'display_subforum_list' => array('BOOL', 1),
|
||||
'display_on_index' => array('BOOL', 1),
|
||||
'enable_indexing' => array('BOOL', 1),
|
||||
'enable_icons' => array('BOOL', 1),
|
||||
|
@ -132,6 +132,7 @@ class acp_forums
|
||||
'forum_rules_link' => request_var('forum_rules_link', ''),
|
||||
'forum_image' => request_var('forum_image', ''),
|
||||
'forum_style' => request_var('forum_style', 0),
|
||||
'display_subforum_list' => request_var('display_subforum_list', false),
|
||||
'display_on_index' => request_var('display_on_index', false),
|
||||
'forum_topics_per_page' => request_var('topics_per_page', 0),
|
||||
'enable_indexing' => request_var('enable_indexing', true),
|
||||
@ -471,6 +472,7 @@ class acp_forums
|
||||
'forum_rules_link' => '',
|
||||
'forum_image' => '',
|
||||
'forum_style' => 0,
|
||||
'display_subforum_list' => true,
|
||||
'display_on_index' => false,
|
||||
'forum_topics_per_page' => 0,
|
||||
'enable_indexing' => true,
|
||||
@ -670,6 +672,7 @@ class acp_forums
|
||||
'S_FORUM_CAT' => ($forum_data['forum_type'] == FORUM_CAT) ? true : false,
|
||||
'S_ENABLE_INDEXING' => ($forum_data['enable_indexing']) ? true : false,
|
||||
'S_TOPIC_ICONS' => ($forum_data['enable_icons']) ? true : false,
|
||||
'S_DISPLAY_SUBFORUM_LIST' => ($forum_data['display_subforum_list']) ? true : false,
|
||||
'S_DISPLAY_ON_INDEX' => ($forum_data['display_on_index']) ? true : false,
|
||||
'S_PRUNE_ENABLE' => ($forum_data['enable_prune']) ? true : false,
|
||||
'S_FORUM_LINK_TRACK' => ($forum_data['forum_flags'] & FORUM_FLAG_LINK_TRACK) ? true : false,
|
||||
|
@ -400,6 +400,7 @@ function display_forums($root_data = '', $display_moderators = true, $return_mod
|
||||
'S_IS_LINK' => ($row['forum_type'] == FORUM_LINK) ? true : false,
|
||||
'S_UNREAD_FORUM' => $forum_unread,
|
||||
'S_LOCKED_FORUM' => ($row['forum_status'] == ITEM_LOCKED) ? true : false,
|
||||
'S_LIST_SUBFORUMS' => ($row['display_subforum_list']) ? true : false,
|
||||
'S_SUBFORUMS' => (sizeof($subforums_list)) ? true : false,
|
||||
|
||||
'FORUM_ID' => $row['forum_id'],
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
$updates_to_version = '3.0.0';
|
||||
|
||||
// Return if we "just include it" to find out for which version the database update is responsuble for
|
||||
// Return if we "just include it" to find out for which version the database update is responsible for
|
||||
if (defined('IN_PHPBB') && defined('IN_INSTALL'))
|
||||
{
|
||||
return;
|
||||
@ -473,6 +473,15 @@ $database_update_info = array(
|
||||
),
|
||||
),
|
||||
),
|
||||
// Changes from 3.0.0 to the next version
|
||||
'3.0.0' => array(
|
||||
// Add the following columns
|
||||
'add_columns' => array(
|
||||
FORUMS_TABLE => array(
|
||||
'display_subforum_list' => array('BOOL', 1),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
// Determine mapping database type
|
||||
|
@ -362,6 +362,7 @@ CREATE TABLE phpbb_forums (
|
||||
forum_last_poster_name VARCHAR(255) CHARACTER SET UTF8 DEFAULT '' NOT NULL COLLATE UNICODE,
|
||||
forum_last_poster_colour VARCHAR(6) CHARACTER SET NONE DEFAULT '' NOT NULL,
|
||||
forum_flags INTEGER DEFAULT 32 NOT NULL,
|
||||
display_subforum_list INTEGER DEFAULT 1 NOT NULL,
|
||||
display_on_index INTEGER DEFAULT 1 NOT NULL,
|
||||
enable_indexing INTEGER DEFAULT 1 NOT NULL,
|
||||
enable_icons INTEGER DEFAULT 1 NOT NULL,
|
||||
|
@ -438,6 +438,7 @@ CREATE TABLE [phpbb_forums] (
|
||||
[forum_last_poster_name] [varchar] (255) DEFAULT ('') NOT NULL ,
|
||||
[forum_last_poster_colour] [varchar] (6) DEFAULT ('') NOT NULL ,
|
||||
[forum_flags] [int] DEFAULT (32) NOT NULL ,
|
||||
[display_subforum_list] [int] DEFAULT (1) NOT NULL ,
|
||||
[display_on_index] [int] DEFAULT (1) NOT NULL ,
|
||||
[enable_indexing] [int] DEFAULT (1) NOT NULL ,
|
||||
[enable_icons] [int] DEFAULT (1) NOT NULL ,
|
||||
|
@ -248,6 +248,7 @@ CREATE TABLE phpbb_forums (
|
||||
forum_last_poster_name blob NOT NULL,
|
||||
forum_last_poster_colour varbinary(6) DEFAULT '' NOT NULL,
|
||||
forum_flags tinyint(4) DEFAULT '32' NOT NULL,
|
||||
display_subforum_list tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
display_on_index tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
enable_indexing tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
enable_icons tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
|
@ -248,6 +248,7 @@ CREATE TABLE phpbb_forums (
|
||||
forum_last_poster_name varchar(255) DEFAULT '' NOT NULL,
|
||||
forum_last_poster_colour varchar(6) DEFAULT '' NOT NULL,
|
||||
forum_flags tinyint(4) DEFAULT '32' NOT NULL,
|
||||
display_subforum_list tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
display_on_index tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
enable_indexing tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
enable_icons tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||
|
@ -505,6 +505,7 @@ CREATE TABLE phpbb_forums (
|
||||
forum_last_poster_name varchar2(765) DEFAULT '' ,
|
||||
forum_last_poster_colour varchar2(6) DEFAULT '' ,
|
||||
forum_flags number(4) DEFAULT '32' NOT NULL,
|
||||
display_subforum_list number(1) DEFAULT '1' NOT NULL,
|
||||
display_on_index number(1) DEFAULT '1' NOT NULL,
|
||||
enable_indexing number(1) DEFAULT '1' NOT NULL,
|
||||
enable_icons number(1) DEFAULT '1' NOT NULL,
|
||||
|
@ -381,6 +381,7 @@ CREATE TABLE phpbb_forums (
|
||||
forum_last_poster_name varchar(255) DEFAULT '' NOT NULL,
|
||||
forum_last_poster_colour varchar(6) DEFAULT '' NOT NULL,
|
||||
forum_flags INT2 DEFAULT '32' NOT NULL,
|
||||
display_subforum_list INT2 DEFAULT '1' NOT NULL CHECK (display_subforum_list >= 0),
|
||||
display_on_index INT2 DEFAULT '1' NOT NULL CHECK (display_on_index >= 0),
|
||||
enable_indexing INT2 DEFAULT '1' NOT NULL CHECK (enable_indexing >= 0),
|
||||
enable_icons INT2 DEFAULT '1' NOT NULL CHECK (enable_icons >= 0),
|
||||
|
@ -241,6 +241,7 @@ CREATE TABLE phpbb_forums (
|
||||
forum_last_poster_name varchar(255) NOT NULL DEFAULT '',
|
||||
forum_last_poster_colour varchar(6) NOT NULL DEFAULT '',
|
||||
forum_flags tinyint(4) NOT NULL DEFAULT '32',
|
||||
display_subforum_list INTEGER UNSIGNED NOT NULL DEFAULT '1',
|
||||
display_on_index INTEGER UNSIGNED NOT NULL DEFAULT '1',
|
||||
enable_indexing INTEGER UNSIGNED NOT NULL DEFAULT '1',
|
||||
enable_icons INTEGER UNSIGNED NOT NULL DEFAULT '1',
|
||||
|
@ -114,10 +114,12 @@ $lang = array_merge($lang, array(
|
||||
|
||||
'GENERAL_FORUM_SETTINGS' => 'General forum settings',
|
||||
|
||||
'LINK' => 'Link',
|
||||
'LIST_INDEX' => 'List subforum in parent-forum’s legend',
|
||||
'LIST_INDEX_EXPLAIN' => 'Displays this forum on the index and elsewhere as a link within the legend of its parent-forum.',
|
||||
'LOCKED' => 'Locked',
|
||||
'LINK' => 'Link',
|
||||
'LIST_INDEX' => 'List subforum in parent-forum’s legend',
|
||||
'LIST_INDEX_EXPLAIN' => 'Displays this forum on the index and elsewhere as a link within the legend of its parent-forum if the parent-forum’s “List subforums in legend” option is enabled.',
|
||||
'LIST_SUBFORUMS' => 'List subforums in legend',
|
||||
'LIST_SUBFORUMS_EXPLAIN' => 'Displays this forum’s subforums on the index and elsewhere as a link within the legend if their “List subforum in parent-forum’s legend” option is enabled.',
|
||||
'LOCKED' => 'Locked',
|
||||
|
||||
'MOVE_POSTS_NO_POSTABLE_FORUM' => 'The forum you selected for moving the posts to is not postable. Please select a postable forum.',
|
||||
'MOVE_POSTS_TO' => 'Move posts to',
|
||||
|
@ -33,7 +33,7 @@
|
||||
<!-- IF forumrow.MODERATORS -->
|
||||
<br /><strong>{forumrow.L_MODERATOR_STR}:</strong> {forumrow.MODERATORS}
|
||||
<!-- ENDIF -->
|
||||
<!-- IF forumrow.SUBFORUMS --><br /><strong>{forumrow.L_SUBFORUM_STR}</strong> {forumrow.SUBFORUMS}<!-- ENDIF -->
|
||||
<!-- IF forumrow.SUBFORUMS and forumrow.S_LIST_SUBFORUMS --><br /><strong>{forumrow.L_SUBFORUM_STR}</strong> {forumrow.SUBFORUMS}<!-- ENDIF -->
|
||||
</dt>
|
||||
<!-- IF forumrow.CLICKS -->
|
||||
<dd class="redirect"><span>{L_REDIRECTS}: {forumrow.CLICKS}</span></dd>
|
||||
|
@ -49,7 +49,7 @@
|
||||
<!-- IF forumrow.MODERATORS -->
|
||||
<p class="forumdesc"><strong>{forumrow.L_MODERATOR_STR}:</strong> {forumrow.MODERATORS}</p>
|
||||
<!-- ENDIF -->
|
||||
<!-- IF forumrow.SUBFORUMS -->
|
||||
<!-- IF forumrow.SUBFORUMS and forumrow.S_LIST_SUBFORUMS -->
|
||||
<p class="forumdesc"><strong>{forumrow.L_SUBFORUM_STR}</strong> {forumrow.SUBFORUMS}</p>
|
||||
<!-- ENDIF -->
|
||||
<!-- IF forumrow.FORUM_IMAGE --></div><!-- ENDIF -->
|
||||
|
Loading…
x
Reference in New Issue
Block a user