Wayne Luke
04-05-2004, 10:00 PM
If you have a lot of style groups added, it can be hard to organize them in the quick style chooser located in the footer of each page. I wanted to provide a visual break between style groups so I came up with this mini modification. It requires 2 file edits and two new minor templates and a minor query.
Create the following templates:
optiongroup_start:
<optgroup label="$optiontitle">
optiongroup_end:
</optgroup>
Next open up includes/functions.php and find:
eval ('$stylesetlist .= "' . fetch_template('option') . '";');
$stylesetlist .= construct_style_options($style['styleid'], $depthmark . '--', false, $quickchooser);
Change that to:
if ($style['userselect'] == 1)
{
eval ('$stylesetlist .= "' . fetch_template('option') . '";');
$stylesetlist .= construct_style_options($style['styleid'], $depthmark . '--', false, $quickchooser);
}
else
{
eval ('$stylesetlist .= "' . fetch_template('optiongroup_start') . '";');
$stylesetlist .= construct_style_options($style['styleid'], $depthmark . '--', false, $quickchooser);
eval ('$stylesetlist .= "' . fetch_template('optiongroup_end') . '";');
}
In admincp/template.php find:
print_yes_no_row($vbphrase['allow_user_selection'], 'userselect', $style['userselect']);
and replace with:
print_yes_no_other_row($vbphrase['allow_user_selection'], 'userselect', 'Option Group', $style['userselect']);
Finally run this query:
ALTER TABLE `style` CHANGE `userselect` `userselect` SMALLINT( 5 ) DEFAULT '1' NOT NULL
This modification is not phrase friendly but you could easily create a phrase for the words "Option Group" used in admincp/template.php and implement it. You can also modify the templates to apply a CSS class and style the option groups to fit your site.
Feel free to modify this to suit your needs.
A demo can be see at www.vbulletinmods.com (http://www.vbulletinmods.com). Just select the style chooser there.
Create the following templates:
optiongroup_start:
<optgroup label="$optiontitle">
optiongroup_end:
</optgroup>
Next open up includes/functions.php and find:
eval ('$stylesetlist .= "' . fetch_template('option') . '";');
$stylesetlist .= construct_style_options($style['styleid'], $depthmark . '--', false, $quickchooser);
Change that to:
if ($style['userselect'] == 1)
{
eval ('$stylesetlist .= "' . fetch_template('option') . '";');
$stylesetlist .= construct_style_options($style['styleid'], $depthmark . '--', false, $quickchooser);
}
else
{
eval ('$stylesetlist .= "' . fetch_template('optiongroup_start') . '";');
$stylesetlist .= construct_style_options($style['styleid'], $depthmark . '--', false, $quickchooser);
eval ('$stylesetlist .= "' . fetch_template('optiongroup_end') . '";');
}
In admincp/template.php find:
print_yes_no_row($vbphrase['allow_user_selection'], 'userselect', $style['userselect']);
and replace with:
print_yes_no_other_row($vbphrase['allow_user_selection'], 'userselect', 'Option Group', $style['userselect']);
Finally run this query:
ALTER TABLE `style` CHANGE `userselect` `userselect` SMALLINT( 5 ) DEFAULT '1' NOT NULL
This modification is not phrase friendly but you could easily create a phrase for the words "Option Group" used in admincp/template.php and implement it. You can also modify the templates to apply a CSS class and style the option groups to fit your site.
Feel free to modify this to suit your needs.
A demo can be see at www.vbulletinmods.com (http://www.vbulletinmods.com). Just select the style chooser there.