Zeile 94 | Zeile 94 |
---|
if(!$errors) {
|
if(!$errors) {
|
| if($mybb->input['pid'] < 0) { $mybb->input['pid'] = 0; }
|
$new_forum = $from_forum; unset($new_forum['fid'], $new_forum['threads'], $new_forum['posts'], $new_forum['lastpost'], $new_forum['lastposter'], $new_forum['lastposteruid'], $new_forum['lastposttid'], $new_forum['lastpostsubject'], $new_forum['unapprovedthreads'], $new_forum['unapprovedposts']);
|
$new_forum = $from_forum; unset($new_forum['fid'], $new_forum['threads'], $new_forum['posts'], $new_forum['lastpost'], $new_forum['lastposter'], $new_forum['lastposteruid'], $new_forum['lastposttid'], $new_forum['lastpostsubject'], $new_forum['unapprovedthreads'], $new_forum['unapprovedposts']);
|
$new_forum['name'] = $db->escape_string($mybb->input['title']); $new_forum['description'] = $db->escape_string($mybb->input['description']); $new_forum['type'] = $db->escape_string($mybb->input['type']);
| $new_forum['name'] = $mybb->input['title']; $new_forum['description'] = $mybb->input['description']; $new_forum['type'] = $mybb->input['type'];
|
$new_forum['pid'] = $mybb->get_input('pid', MyBB::INPUT_INT);
|
$new_forum['pid'] = $mybb->get_input('pid', MyBB::INPUT_INT);
|
$new_forum['rulestitle'] = $db->escape_string($new_forum['rulestitle']); $new_forum['rules'] = $db->escape_string($new_forum['rules']);
| |
$new_forum['parentlist'] = '';
|
$new_forum['parentlist'] = '';
|
| foreach($new_forum as $key => $value) { $new_forum[$key] = $db->escape_string($value); }
|
$to = $db->insert_query("forums", $new_forum);
| $to = $db->insert_query("forums", $new_forum);
|
Zeile 120 | Zeile 127 |
---|
$query = $db->simple_select("forums", '*', "fid='{$to}'"); $to_forum = $db->fetch_array($query); if(!$db->num_rows($query))
|
$query = $db->simple_select("forums", '*', "fid='{$to}'"); $to_forum = $db->fetch_array($query); if(!$db->num_rows($query))
|
{
| {
|
$errors[] = $lang->error_invalid_destination_forum; }
| $errors[] = $lang->error_invalid_destination_forum; }
|
Zeile 128 | Zeile 135 |
---|
{ $new_forum = $from_forum; unset($new_forum['fid'], $new_forum['threads'], $new_forum['posts'], $new_forum['lastpost'], $new_forum['lastposter'], $new_forum['lastposteruid'], $new_forum['lastposttid'], $new_forum['lastpostsubject'], $new_forum['unapprovedthreads'], $new_forum['unapprovedposts']);
|
{ $new_forum = $from_forum; unset($new_forum['fid'], $new_forum['threads'], $new_forum['posts'], $new_forum['lastpost'], $new_forum['lastposter'], $new_forum['lastposteruid'], $new_forum['lastposttid'], $new_forum['lastpostsubject'], $new_forum['unapprovedthreads'], $new_forum['unapprovedposts']);
|
$new_forum['name'] = $db->escape_string($to_forum['name']); $new_forum['description'] = $db->escape_string($to_forum['description']); $new_forum['pid'] = $db->escape_string($to_forum['pid']); $new_forum['parentlist'] = $db->escape_string($to_forum['parentlist']); $new_forum['rulestitle'] = $db->escape_string($new_forum['rulestitle']); $new_forum['rules'] = $db->escape_string($new_forum['rules']);
| $new_forum['name'] = $to_forum['name']; $new_forum['description'] = $to_forum['description']; $new_forum['pid'] = $to_forum['pid']; $new_forum['parentlist'] = $to_forum['parentlist'];
foreach($new_forum as $key => $value) { $new_forum[$key] = $db->escape_string($value); }
|
$db->update_query("forums", $new_forum, "fid='{$to}'"); }
| $db->update_query("forums", $new_forum, "fid='{$to}'"); }
|
Zeile 142 | Zeile 152 |
---|
if(!$errors) { // Copy permissions
|
if(!$errors) { // Copy permissions
|
if(is_array($mybb->input['copygroups']) && count($mybb->input['copygroups'] > 0))
| if(is_array($mybb->input['copygroups']) && count($mybb->input['copygroups']) > 0)
|
{ foreach($mybb->input['copygroups'] as $gid) {
| { foreach($mybb->input['copygroups'] as $gid) {
|
Zeile 225 | Zeile 235 |
---|
if($copy_data['type'] == "f") { $create_a_options_f['checked'] = true;
|
if($copy_data['type'] == "f") { $create_a_options_f['checked'] = true;
|
} else {
| } else {
|
$create_a_options_c['checked'] = true; }
| $create_a_options_c['checked'] = true; }
|
Zeile 238 | Zeile 248 |
---|
{ $usergroups[$usergroup['gid']] = htmlspecialchars_uni($usergroup['title']); }
|
{ $usergroups[$usergroup['gid']] = htmlspecialchars_uni($usergroup['title']); }
|
|
|
$form_container = new FormContainer($lang->copy_forum); $form_container->output_row($lang->source_forum." <em>*</em>", $lang->source_forum_desc, $form->generate_forum_select('from', $copy_data['from'], array('id' => 'from')), 'from'); $form_container->output_row($lang->destination_forum." <em>*</em>", $lang->destination_forum_desc, $form->generate_forum_select('to', $copy_data['to'], array('id' => 'to', 'main_option' => $lang->copy_to_new_forum)), 'to');
| $form_container = new FormContainer($lang->copy_forum); $form_container->output_row($lang->source_forum." <em>*</em>", $lang->source_forum_desc, $form->generate_forum_select('from', $copy_data['from'], array('id' => 'from')), 'from'); $form_container->output_row($lang->destination_forum." <em>*</em>", $lang->destination_forum_desc, $form->generate_forum_select('to', $copy_data['to'], array('id' => 'to', 'main_option' => $lang->copy_to_new_forum)), 'to');
|
Zeile 258 | Zeile 268 |
---|
$buttons[] = $form->generate_submit_button($lang->copy_forum); $form->output_submit_wrapper($buttons); $form->end();
|
$buttons[] = $form->generate_submit_button($lang->copy_forum); $form->output_submit_wrapper($buttons); $form->end();
|
|
|
$page->output_footer(); }
| $page->output_footer(); }
|
Zeile 268 | Zeile 278 |
---|
$mod_data = $db->fetch_array($query);
if(!$mod_data['id'])
|
$mod_data = $db->fetch_array($query);
if(!$mod_data['id'])
|
{
| {
|
flash_message($lang->error_incorrect_moderator, 'error'); admin_redirect("index.php?module=forum-management"); }
| flash_message($lang->error_incorrect_moderator, 'error'); admin_redirect("index.php?module=forum-management"); }
|
Zeile 427 | Zeile 437 |
---|
$pid = $mybb->get_input('pid', MyBB::INPUT_INT); $fid = $mybb->get_input('fid', MyBB::INPUT_INT); $gid = $mybb->get_input('gid', MyBB::INPUT_INT);
|
$pid = $mybb->get_input('pid', MyBB::INPUT_INT); $fid = $mybb->get_input('fid', MyBB::INPUT_INT); $gid = $mybb->get_input('gid', MyBB::INPUT_INT);
|
// User clicked no if($mybb->input['no']) {
| // User clicked no if($mybb->input['no']) {
|
admin_redirect("index.php?module=forum-management&fid={$fid}"); }
| admin_redirect("index.php?module=forum-management&fid={$fid}"); }
|
Zeile 590 | Zeile 600 |
---|
<script src=\"jscripts/tabs.js\" type=\"text/javascript\"></script>\n <script type=\"text/javascript\"> <!--
|
<script src=\"jscripts/tabs.js\" type=\"text/javascript\"></script>\n <script type=\"text/javascript\"> <!--
|
$(document).ready(function() {
| $(function() {
|
$(\"#modal_form\").on(\"click\", \"#savePermissions\", function(e) { e.preventDefault();
| $(\"#modal_form\").on(\"click\", \"#savePermissions\", function(e) { e.preventDefault();
|
Zeile 719 | Zeile 729 |
---|
'candeleteposts' => 'editing', 'candeletethreads' => 'editing', 'caneditattachments' => 'editing',
|
'candeleteposts' => 'editing', 'candeletethreads' => 'editing', 'caneditattachments' => 'editing',
|
| 'canviewdeletionnotice' => 'editing',
|
'modposts' => 'moderate', 'modthreads' => 'moderate',
| 'modposts' => 'moderate', 'modthreads' => 'moderate',
|
Zeile 861 | Zeile 872 |
---|
"defaultsortby" => $db->escape_string($mybb->input['defaultsortby']), "defaultsortorder" => $db->escape_string($mybb->input['defaultsortorder']), );
|
"defaultsortby" => $db->escape_string($mybb->input['defaultsortby']), "defaultsortorder" => $db->escape_string($mybb->input['defaultsortorder']), );
|
| $plugins->run_hooks("admin_forum_management_add_start");
|
$fid = $db->insert_query("forums", $insert_array);
$parentlist = make_parent_list($fid); $db->update_query("forums", array("parentlist" => $parentlist), "fid='$fid'");
|
$fid = $db->insert_query("forums", $insert_array);
$parentlist = make_parent_list($fid); $db->update_query("forums", array("parentlist" => $parentlist), "fid='$fid'");
|
$inherit = $mybb->input['default_permissions'];
| $inherit = $mybb->input['default_permissions'];
|
foreach($mybb->input as $id => $permission) { if(strpos($id, 'fields_') === false) { continue; }
|
foreach($mybb->input as $id => $permission) { if(strpos($id, 'fields_') === false) { continue; }
|
|
|
list(, $gid) = explode('fields_', $id);
// If it isn't an array then it came from the javascript form if(!is_array($permission))
|
list(, $gid) = explode('fields_', $id);
// If it isn't an array then it came from the javascript form if(!is_array($permission))
|
{
| {
|
$permission = explode(',', $permission); $permission = array_flip($permission); foreach($permission as $name => $value) { $permission[$name] = 1;
|
$permission = explode(',', $permission); $permission = array_flip($permission); foreach($permission as $name => $value) { $permission[$name] = 1;
|
} }
| } }
|
foreach(array('canview','canpostthreads','canpostreplys','canpostpolls') as $name) {
| foreach(array('canview','canpostthreads','canpostreplys','canpostpolls') as $name) {
|
Zeile 900 | Zeile 914 |
---|
} } }
|
} } }
|
|
|
$canview = $permissions['canview']; $canpostthreads = $permissions['canpostthreads']; $canpostpolls = $permissions['canpostpolls'];
| $canview = $permissions['canview']; $canpostthreads = $permissions['canpostthreads']; $canpostpolls = $permissions['canpostpolls'];
|
Zeile 914 | Zeile 928 |
---|
// Log admin action log_admin_action($fid, $insert_array['name']);
|
// Log admin action log_admin_action($fid, $insert_array['name']);
|
|
|
flash_message($lang->success_forum_added, 'success'); admin_redirect("index.php?module=forum-management");
|
flash_message($lang->success_forum_added, 'success'); admin_redirect("index.php?module=forum-management");
|
} }
$page->extra_header .= "<script src=\"jscripts/quick_perm_editor.js\" type=\"text/javascript\"></script>\n";
| } }
$page->extra_header .= "<script src=\"jscripts/quick_perm_editor.js\" type=\"text/javascript\"></script>\n";
|
$page->add_breadcrumb_item($lang->add_forum); $page->output_header($lang->add_forum);
| $page->add_breadcrumb_item($lang->add_forum); $page->output_header($lang->add_forum);
|
Zeile 1024 | Zeile 1038 |
---|
while($style = $db->fetch_array($query)) { $styles[$style['tid']] = htmlspecialchars_uni($style['name']);
|
while($style = $db->fetch_array($query)) { $styles[$style['tid']] = htmlspecialchars_uni($style['name']);
|
}
$style_options = array( $form->generate_check_box('overridestyle', 1, $lang->override_user_style, array('checked' => $forum_data['overridestyle'], 'id' => 'overridestyle')), $lang->forum_specific_style."<br />\n".$form->generate_select_box('style', $styles, $forum_data['style'], array('id' => 'style')) );
$form_container->output_row($lang->style_options, "", "<div class=\"forum_settings_bit\">".implode("</div><div class=\"forum_settings_bit\">", $style_options)."</div>");
$display_methods = array( '0' => $lang->dont_display_rules, '1' => $lang->display_rules_inline, '3' => $lang->display_rules_inline_new, '2' => $lang->display_rules_link );
$forum_rules = array( $lang->display_method."<br />\n".$form->generate_select_box('rulestype', $display_methods, $forum_data['rulestype'], array('checked' => $forum_data['rulestype'], 'id' => 'rulestype')), $lang->title."<br />\n".$form->generate_text_box('rulestitle', $forum_data['rulestitle'], array('checked' => $forum_data['rulestitle'], 'id' => 'rulestitle')), $lang->rules."<br />\n".$form->generate_text_area('rules', $forum_data['rules'], array('checked' => $forum_data['rules'], 'id' => 'rules')) );
$form_container->output_row($lang->forum_rules, "", "<div class=\"forum_settings_bit\">".implode("</div><div class=\"forum_settings_bit\">", $forum_rules)."</div>");
$default_date_cut = array( 0 => $lang->board_default, 1 => $lang->datelimit_1day, 5 => $lang->datelimit_5days, 10 => $lang->datelimit_10days, 20 => $lang->datelimit_20days, 50 => $lang->datelimit_50days, 75 => $lang->datelimit_75days, 100 => $lang->datelimit_100days, 365 => $lang->datelimit_lastyear, 9999 => $lang->datelimit_beginning, );
$default_sort_by = array( "" => $lang->board_default, "subject" => $lang->sort_by_subject, "lastpost" => $lang->sort_by_lastpost, "starter" => $lang->sort_by_starter, "started" => $lang->sort_by_started, "rating" => $lang->sort_by_rating, "replies" => $lang->sort_by_replies, "views" => $lang->sort_by_views, );
$default_sort_order = array( "" => $lang->board_default, "asc" => $lang->sort_order_asc, "desc" => $lang->sort_order_desc, );
$view_options = array( $lang->default_date_cut."<br />\n".$form->generate_select_box('defaultdatecut', $default_date_cut, $forum_data['defaultdatecut'], array('checked' => $forum_data['defaultdatecut'], 'id' => 'defaultdatecut')), $lang->default_sort_by."<br />\n".$form->generate_select_box('defaultsortby', $default_sort_by, $forum_data['defaultsortby'], array('checked' => $forum_data['defaultsortby'], 'id' => 'defaultsortby')),
| }
$style_options = array( $form->generate_check_box('overridestyle', 1, $lang->override_user_style, array('checked' => $forum_data['overridestyle'], 'id' => 'overridestyle')), $lang->forum_specific_style."<br />\n".$form->generate_select_box('style', $styles, $forum_data['style'], array('id' => 'style')) );
$form_container->output_row($lang->style_options, "", "<div class=\"forum_settings_bit\">".implode("</div><div class=\"forum_settings_bit\">", $style_options)."</div>");
$display_methods = array( '0' => $lang->dont_display_rules, '1' => $lang->display_rules_inline, '3' => $lang->display_rules_inline_new, '2' => $lang->display_rules_link );
$forum_rules = array( $lang->display_method."<br />\n".$form->generate_select_box('rulestype', $display_methods, $forum_data['rulestype'], array('checked' => $forum_data['rulestype'], 'id' => 'rulestype')), $lang->title."<br />\n".$form->generate_text_box('rulestitle', $forum_data['rulestitle'], array('checked' => $forum_data['rulestitle'], 'id' => 'rulestitle')), $lang->rules."<br />\n".$form->generate_text_area('rules', $forum_data['rules'], array('checked' => $forum_data['rules'], 'id' => 'rules')) );
$form_container->output_row($lang->forum_rules, "", "<div class=\"forum_settings_bit\">".implode("</div><div class=\"forum_settings_bit\">", $forum_rules)."</div>");
$default_date_cut = array( 0 => $lang->board_default, 1 => $lang->datelimit_1day, 5 => $lang->datelimit_5days, 10 => $lang->datelimit_10days, 20 => $lang->datelimit_20days, 50 => $lang->datelimit_50days, 75 => $lang->datelimit_75days, 100 => $lang->datelimit_100days, 365 => $lang->datelimit_lastyear, 9999 => $lang->datelimit_beginning, );
$default_sort_by = array( "" => $lang->board_default, "subject" => $lang->sort_by_subject, "lastpost" => $lang->sort_by_lastpost, "starter" => $lang->sort_by_starter, "started" => $lang->sort_by_started, "rating" => $lang->sort_by_rating, "replies" => $lang->sort_by_replies, "views" => $lang->sort_by_views, );
$default_sort_order = array( "" => $lang->board_default, "asc" => $lang->sort_order_asc, "desc" => $lang->sort_order_desc, );
$view_options = array( $lang->default_date_cut."<br />\n".$form->generate_select_box('defaultdatecut', $default_date_cut, $forum_data['defaultdatecut'], array('checked' => $forum_data['defaultdatecut'], 'id' => 'defaultdatecut')), $lang->default_sort_by."<br />\n".$form->generate_select_box('defaultsortby', $default_sort_by, $forum_data['defaultsortby'], array('checked' => $forum_data['defaultsortby'], 'id' => 'defaultsortby')),
|
$lang->default_sort_order."<br />\n".$form->generate_select_box('defaultsortorder', $default_sort_order, $forum_data['defaultsortorder'], array('checked' => $forum_data['defaultsortorder'], 'id' => 'defaultsortorder')), );
| $lang->default_sort_order."<br />\n".$form->generate_select_box('defaultsortorder', $default_sort_order, $forum_data['defaultsortorder'], array('checked' => $forum_data['defaultsortorder'], 'id' => 'defaultsortorder')), );
|
Zeile 1728 | Zeile 1742 |
---|
else if(is_array($cached_forum_perms) && $cached_forum_perms[$forum_data['pid']][$usergroup['gid']]) { $perms = $cached_forum_perms[$forum_data['pid']][$usergroup['gid']];
|
else if(is_array($cached_forum_perms) && $cached_forum_perms[$forum_data['pid']][$usergroup['gid']]) { $perms = $cached_forum_perms[$forum_data['pid']][$usergroup['gid']];
|
$default_checked = true; }
| $default_checked = true; }
|
if(!$perms) { $perms = $usergroup;
| if(!$perms) { $perms = $usergroup;
|
Zeile 1852 | Zeile 1866 |
---|
}
if($mybb->input['action'] == "deletemod")
|
}
if($mybb->input['action'] == "deletemod")
|
{
| {
|
$modid = $mybb->get_input('id', MyBB::INPUT_INT); $isgroup = $mybb->get_input('isgroup', MyBB::INPUT_INT); $fid = $mybb->get_input('fid', MyBB::INPUT_INT);
| $modid = $mybb->get_input('id', MyBB::INPUT_INT); $isgroup = $mybb->get_input('isgroup', MyBB::INPUT_INT); $fid = $mybb->get_input('fid', MyBB::INPUT_INT);
|
Zeile 1950 | Zeile 1964 |
---|
$fid = $mybb->get_input('fid', MyBB::INPUT_INT); $forum_info = get_forum($fid);
|
$fid = $mybb->get_input('fid', MyBB::INPUT_INT); $forum_info = get_forum($fid);
|
$query = $db->simple_select("forums", "posts,unapprovedposts,threads,unapprovedthreads", "fid='{$fid}'"); $stats = $db->fetch_array($query);
// Delete the forum $db->delete_query("forums", "fid='$fid'");
| $delquery = "";
|
switch($db->type) { case "pgsql":
| switch($db->type) { case "pgsql":
|
Zeile 1966 | Zeile 1975 |
---|
$query = $db->simple_select("forums", "*", "CONCAT(',', parentlist, ',') LIKE '%,$fid,%'"); } while($forum = $db->fetch_array($query))
|
$query = $db->simple_select("forums", "*", "CONCAT(',', parentlist, ',') LIKE '%,$fid,%'"); } while($forum = $db->fetch_array($query))
|
{
| {
|
$fids[$forum['fid']] = $fid; $delquery .= " OR fid='{$forum['fid']}'";
|
$fids[$forum['fid']] = $fid; $delquery .= " OR fid='{$forum['fid']}'";
|
$stats['posts'] += $forum['posts']; $stats['unapprovedposts'] += $forum['unapprovedposts']; $stats['threads'] += $forum['threads']; $stats['unapprovedthreads'] += $forum['unapprovedthreads'];
| |
}
|
}
|
| require_once MYBB_ROOT.'inc/class_moderation.php'; $moderation = new Moderation();
// Start pagination. Limit results to 50 $query = $db->simple_select("threads", "tid", "fid='{$fid}' {$delquery}", array("limit" => 50));
while($tid = $db->fetch_field($query, 'tid')) { $moderation->delete_thread($tid); }
// Check whether all threads have been deleted $query = $db->simple_select("threads", "tid", "fid='{$fid}' {$delquery}");
if($db->num_rows($query) > 0) { $page->output_header();
$form = new Form("index.php?module=forum-management", 'post');
echo $form->generate_hidden_field("fid", $fid); echo $form->generate_hidden_field("action", "delete"); output_auto_redirect($form, $lang->confirm_proceed_deletion);
$form->end();
$page->output_footer(); exit; }
// End pagination
// Delete the forum $db->delete_query("forums", "fid='$fid'");
// Delete subforums
|
switch($db->type) { case "pgsql":
| switch($db->type) { case "pgsql":
|
Zeile 1986 | Zeile 2026 |
---|
$db->delete_query("forums", "CONCAT(',',parentlist,',') LIKE '%,$fid,%'"); }
|
$db->delete_query("forums", "CONCAT(',',parentlist,',') LIKE '%,$fid,%'"); }
|
$db->delete_query("threads", "fid='{$fid}' {$delquery}"); $db->delete_query("posts", "fid='{$fid}' {$delquery}"); $db->delete_query("moderators", "fid='{$fid}' {$delquery}"); $db->delete_query("forumsubscriptions", "fid='{$fid}' {$delquery}"); $db->delete_query("forumpermissions", "fid='{$fid}' {$delquery}");
$update_stats = array( 'numthreads' => "-".$stats['threads'], 'numunapprovedthreads' => "-".$stats['unapprovedthreads'], 'numposts' => "-".$stats['posts'], 'numunapprovedposts' => "-".$stats['unapprovedposts'] ); update_stats($update_stats);
| $db->delete_query('moderators', "fid='{$fid}' {$delquery}"); $db->delete_query('forumsubscriptions', "fid='{$fid}' {$delquery}"); $db->delete_query('forumpermissions', "fid='{$fid}' {$delquery}"); $db->delete_query('announcements', "fid='{$fid}' {$delquery}"); $db->delete_query('forumsread', "fid='{$fid}' {$delquery}");
|
$plugins->run_hooks("admin_forum_management_delete_commit");
$cache->update_forums(); $cache->update_moderators(); $cache->update_forumpermissions();
|
$plugins->run_hooks("admin_forum_management_delete_commit");
$cache->update_forums(); $cache->update_moderators(); $cache->update_forumpermissions();
|
| $cache->update_forumsdisplay();
|
// Log admin action log_admin_action($forum_info['fid'], $forum_info['name']);
| // Log admin action log_admin_action($forum_info['fid'], $forum_info['name']);
|
Zeile 2070 | Zeile 2103 |
---|
if($permission[$name]) { $permissions[$name][$gid] = 1;
|
if($permission[$name]) { $permissions[$name][$gid] = 1;
|
} else
| } else
|
{ $permissions[$name][$gid] = 0; }
| { $permissions[$name][$gid] = 0; }
|
Zeile 2228 | Zeile 2261 |
---|
if($fid) { $page->add_breadcrumb_item($lang->view_forum, "index.php?module=forum-management");
|
if($fid) { $page->add_breadcrumb_item($lang->view_forum, "index.php?module=forum-management");
|
}
$page->output_header($lang->forum_management);
| }
$page->output_header($lang->forum_management);
|
if($fid) { $page->output_nav_tabs($sub_tabs, 'view_forum');
|
if($fid) { $page->output_nav_tabs($sub_tabs, 'view_forum');
|
} else {
| } else {
|
$page->output_nav_tabs($sub_tabs, 'forum_management'); }
$form = new Form("index.php?module=forum-management", "post", "management");
|
$page->output_nav_tabs($sub_tabs, 'forum_management'); }
$form = new Form("index.php?module=forum-management", "post", "management");
|
echo $form->generate_hidden_field("fid", $mybb->input['fid']);
| echo $form->generate_hidden_field("fid", $mybb->input['fid']);
|
if($fid) {
| if($fid) {
|
Zeile 2266 | Zeile 2299 |
---|
$form_container = new FormContainer($lang->manage_forums); } $form_container->output_row_header($lang->forum);
|
$form_container = new FormContainer($lang->manage_forums); } $form_container->output_row_header($lang->forum);
|
$form_container->output_row_header($lang->order, array("class" => "align_center", 'width' => '5%'));
| $form_container->output_row_header($lang->order, array("class" => "align_center", 'width' => '6%'));
|
$form_container->output_row_header($lang->controls, array("class" => "align_center", 'style' => 'width: 200px'));
|
$form_container->output_row_header($lang->controls, array("class" => "align_center", 'style' => 'width: 200px'));
|
build_admincp_forums_list($form_container, $fid);
| build_admincp_forums_list($form_container, $form, $fid);
|
$submit_options = array();
if($form_container->num_rows() == 0)
|
$submit_options = array();
if($form_container->num_rows() == 0)
|
{
| {
|
$form_container->output_cell($lang->no_forums, array('colspan' => 3)); $form_container->construct_row(); $submit_options = array('disabled' => true);
| $form_container->output_cell($lang->no_forums, array('colspan' => 3)); $form_container->construct_row(); $submit_options = array('disabled' => true);
|
Zeile 2355 | Zeile 2388 |
---|
$default_checked = true; } else if(is_array($cached_forum_perms) && $cached_forum_perms[$forum['pid']][$usergroup['gid']])
|
$default_checked = true; } else if(is_array($cached_forum_perms) && $cached_forum_perms[$forum['pid']][$usergroup['gid']])
|
{
| {
|
$perms = $cached_forum_perms[$forum['pid']][$usergroup['gid']]; $default_checked = true;
|
$perms = $cached_forum_perms[$forum['pid']][$usergroup['gid']]; $default_checked = true;
|
} }
if(!$perms) { $perms = $usergroup; $default_checked = true; }
| } }
if(!$perms) { $perms = $usergroup; $default_checked = true; }
|
} else { if(isset($existing_permissions) && is_array($existing_permissions) && $existing_permissions[$usergroup['gid']])
|
} else { if(isset($existing_permissions) && is_array($existing_permissions) && $existing_permissions[$usergroup['gid']])
|
{
| {
|
$perms = $existing_permissions[$usergroup['gid']];
|
$perms = $existing_permissions[$usergroup['gid']];
|
$default_checked = false; } elseif(is_array($cached_forum_perms) && isset($cached_forum_perms[$forum['fid']]) && $cached_forum_perms[$forum['fid']][$usergroup['gid']]) {
| $default_checked = false; } elseif(is_array($cached_forum_perms) && isset($cached_forum_perms[$forum['fid']]) && $cached_forum_perms[$forum['fid']][$usergroup['gid']]) {
|
$perms = $cached_forum_perms[$forum['fid']][$usergroup['gid']]; $default_checked = true; } else if(is_array($cached_forum_perms) && $cached_forum_perms[$forum['pid']][$usergroup['gid']])
|
$perms = $cached_forum_perms[$forum['fid']][$usergroup['gid']]; $default_checked = true; } else if(is_array($cached_forum_perms) && $cached_forum_perms[$forum['pid']][$usergroup['gid']])
|
{
| {
|
$perms = $cached_forum_perms[$forum['pid']][$usergroup['gid']]; $default_checked = true; }
| $perms = $cached_forum_perms[$forum['pid']][$usergroup['gid']]; $default_checked = true; }
|
Zeile 2396 | Zeile 2429 |
---|
if(isset($mybb->input['permissions'])) { if($mybb->input['permissions'][$usergroup['gid']][$forum_permission])
|
if(isset($mybb->input['permissions'])) { if($mybb->input['permissions'][$usergroup['gid']][$forum_permission])
|
{ $perms_checked[$forum_permission] = 1; }
| { $perms_checked[$forum_permission] = 1; }
|
else { $perms_checked[$forum_permission] = 0;
| else { $perms_checked[$forum_permission] = 0;
|
Zeile 2477 | Zeile 2510 |
---|
{ $form_container->output_cell("<a href=\"index.php?module=forum-management&action=permissions&pid={$perms['pid']}\" onclick=\"MyBB.popupWindow('index.php?module=forum-management&action=permissions&pid={$perms['pid']}&ajax=1', null, true); return false;\">{$lang->edit_permissions}</a>", array("class" => "align_center")); $form_container->output_cell("<a href=\"index.php?module=forum-management&action=clear_permission&pid={$perms['pid']}&my_post_key={$mybb->post_code}\" onclick=\"return AdminCP.deleteConfirmation(this, '{$lang->confirm_clear_custom_permission}')\">{$lang->clear_custom_perms}</a>", array("class" => "align_center"));
|
{ $form_container->output_cell("<a href=\"index.php?module=forum-management&action=permissions&pid={$perms['pid']}\" onclick=\"MyBB.popupWindow('index.php?module=forum-management&action=permissions&pid={$perms['pid']}&ajax=1', null, true); return false;\">{$lang->edit_permissions}</a>", array("class" => "align_center")); $form_container->output_cell("<a href=\"index.php?module=forum-management&action=clear_permission&pid={$perms['pid']}&my_post_key={$mybb->post_code}\" onclick=\"return AdminCP.deleteConfirmation(this, '{$lang->confirm_clear_custom_permission}')\">{$lang->clear_custom_perms}</a>", array("class" => "align_center"));
|
} else {
| } else {
|
$form_container->output_cell("<a href=\"index.php?module=forum-management&action=permissions&gid={$usergroup['gid']}&fid={$fid}\" onclick=\"MyBB.popupWindow('index.php?module=forum-management&action=permissions&gid={$usergroup['gid']}&fid={$fid}&ajax=1', null, true); return false;\">{$lang->set_custom_perms}</a>", array("class" => "align_center", "colspan" => 2)); } $form_container->construct_row(array('id' => 'row_'.$usergroup['gid']));
| $form_container->output_cell("<a href=\"index.php?module=forum-management&action=permissions&gid={$usergroup['gid']}&fid={$fid}\" onclick=\"MyBB.popupWindow('index.php?module=forum-management&action=permissions&gid={$usergroup['gid']}&fid={$fid}&ajax=1', null, true); return false;\">{$lang->set_custom_perms}</a>", array("class" => "align_center", "colspan" => 2)); } $form_container->construct_row(array('id' => 'row_'.$usergroup['gid']));
|
Zeile 2560 | Zeile 2593 |
---|
}
if(!isset($mybb->input['usergroup']))
|
}
if(!isset($mybb->input['usergroup']))
|
{
| {
|
$mybb->input['usergroup'] = ''; }
| $mybb->input['usergroup'] = ''; }
|
Zeile 2582 | Zeile 2615 |
---|
echo $form->generate_hidden_field("fid", $mybb->input['fid']); echo $form->generate_hidden_field("add", "moderators"); $form_container = new FormContainer($lang->add_user_as_moderator);
|
echo $form->generate_hidden_field("fid", $mybb->input['fid']); echo $form->generate_hidden_field("add", "moderators"); $form_container = new FormContainer($lang->add_user_as_moderator);
|
$form_container->output_row($lang->username." <em>*</em>", $lang->moderator_username_desc, $form->generate_text_box('username', $mybb->input['username'], array('id' => 'username')), 'username');
| $form_container->output_row($lang->username." <em>*</em>", $lang->moderator_username_desc, $form->generate_text_box('username', htmlspecialchars_uni($mybb->get_input('username')), array('id' => 'username')), 'username');
|
$form_container->end();
// Autocompletion for usernames
| $form_container->end();
// Autocompletion for usernames
|
Zeile 2593 | Zeile 2626 |
---|
<!-- $("#username").select2({ placeholder: "'.$lang->search_for_a_user.'",
|
<!-- $("#username").select2({ placeholder: "'.$lang->search_for_a_user.'",
|
minimumInputLength: 3, maximumSelectionSize: 3,
| minimumInputLength: 2,
|
multiple: false, ajax: { // instead of writing the function to execute the request we use Select2\'s convenient helper url: "../xmlhttp.php?action=get_users",
| multiple: false, ajax: { // instead of writing the function to execute the request we use Select2\'s convenient helper url: "../xmlhttp.php?action=get_users",
|
Zeile 2622 | Zeile 2654 |
---|
}, });
|
}, });
|
$(\'[for=username]\').click(function(){
| $(\'[for=username]\').on(\'click\', function(){
|
$("#username").select2(\'open\'); return false; });
| $("#username").select2(\'open\'); return false; });
|
Zeile 2643 | Zeile 2675 |
---|
/** * @param DefaultFormContainer $form_container
|
/** * @param DefaultFormContainer $form_container
|
| * @param DefaultForm $form
|
* @param int $pid * @param int $depth */
|
* @param int $pid * @param int $depth */
|
function build_admincp_forums_list(&$form_container, $pid=0, $depth=1)
| function build_admincp_forums_list(&$form_container, &$form, $pid=0, $depth=1)
|
{ global $mybb, $lang, $db, $sub_forums; static $forums_by_parent;
| { global $mybb, $lang, $db, $sub_forums; static $forums_by_parent;
|
Zeile 2678 | Zeile 2711 |
---|
}
if($forum['type'] == "c" && ($depth == 1 || $depth == 2))
|
}
if($forum['type'] == "c" && ($depth == 1 || $depth == 2))
|
{ $sub_forums = ''; if(isset($forums_by_parent[$forum['fid']]) && $depth == 2) { build_admincp_forums_list($form_container, $forum['fid'], $depth+1); } if($sub_forums) { $sub_forums = "<br /><small>{$lang->sub_forums}: {$sub_forums}</small>"; }
| { $sub_forums = ''; if(isset($forums_by_parent[$forum['fid']]) && $depth == 2) { build_admincp_forums_list($form_container, $form, $forum['fid'], $depth+1); } if($sub_forums) { $sub_forums = "<br /><small>{$lang->sub_forums}: {$sub_forums}</small>"; }
|
$form_container->output_cell("<div style=\"padding-left: ".(40*($depth-1))."px;\"><a href=\"index.php?module=forum-management&fid={$forum['fid']}\"><strong>{$forum['name']}</strong></a>{$sub_forums}</div>");
|
$form_container->output_cell("<div style=\"padding-left: ".(40*($depth-1))."px;\"><a href=\"index.php?module=forum-management&fid={$forum['fid']}\"><strong>{$forum['name']}</strong></a>{$sub_forums}</div>");
|
$form_container->output_cell("<input type=\"text\" name=\"disporder[".$forum['fid']."]\" value=\"".$forum['disporder']."\" class=\"text_input align_center\" style=\"width: 80%; font-weight: bold;\" />", array("class" => "align_center"));
| $form_container->output_cell($form->generate_numeric_field("disporder[{$forum['fid']}]", "{$forum['disporder']}", array('min' => 0, 'class' => 'align_center', 'style' => 'width:80%; font-weight:bold')), array("class" => "align_center"));
|
$popup = new PopupMenu("forum_{$forum['fid']}", $lang->options); $popup->add_item($lang->edit_forum, "index.php?module=forum-management&action=edit&fid={$forum['fid']}"); $popup->add_item($lang->subforums, "index.php?module=forum-management&fid={$forum['fid']}"); $popup->add_item($lang->moderators, "index.php?module=forum-management&fid={$forum['fid']}#tab_moderators"); $popup->add_item($lang->permissions, "index.php?module=forum-management&fid={$forum['fid']}#tab_permissions");
|
$popup = new PopupMenu("forum_{$forum['fid']}", $lang->options); $popup->add_item($lang->edit_forum, "index.php?module=forum-management&action=edit&fid={$forum['fid']}"); $popup->add_item($lang->subforums, "index.php?module=forum-management&fid={$forum['fid']}"); $popup->add_item($lang->moderators, "index.php?module=forum-management&fid={$forum['fid']}#tab_moderators"); $popup->add_item($lang->permissions, "index.php?module=forum-management&fid={$forum['fid']}#tab_permissions");
|
| $popup->add_item($lang->forum_thread_prefixes, "index.php?module=config-thread_prefixes&fid={$forum['fid']}");
|
$popup->add_item($lang->add_child_forum, "index.php?module=forum-management&action=add&pid={$forum['fid']}"); $popup->add_item($lang->copy_forum, "index.php?module=forum-management&action=copy&fid={$forum['fid']}"); $popup->add_item($lang->delete_forum, "index.php?module=forum-management&action=delete&fid={$forum['fid']}&my_post_key={$mybb->post_code}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_forum_deletion}')");
| $popup->add_item($lang->add_child_forum, "index.php?module=forum-management&action=add&pid={$forum['fid']}"); $popup->add_item($lang->copy_forum, "index.php?module=forum-management&action=copy&fid={$forum['fid']}"); $popup->add_item($lang->delete_forum, "index.php?module=forum-management&action=delete&fid={$forum['fid']}&my_post_key={$mybb->post_code}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_forum_deletion}')");
|
Zeile 2708 | Zeile 2742 |
---|
// Does this category have any sub forums? if($forums_by_parent[$forum['fid']])
|
// Does this category have any sub forums? if($forums_by_parent[$forum['fid']])
|
{ build_admincp_forums_list($form_container, $forum['fid'], $depth+1); }
| { build_admincp_forums_list($form_container, $form, $forum['fid'], $depth+1); }
|
} elseif($forum['type'] == "f" && ($depth == 1 || $depth == 2)) { if($forum['description'])
|
} elseif($forum['type'] == "f" && ($depth == 1 || $depth == 2)) { if($forum['description'])
|
{
| {
|
$forum['description'] = preg_replace("#&(?!\#[0-9]+;)#si", "&", $forum['description']); $forum['description'] = "<br /><small>".$forum['description']."</small>"; }
| $forum['description'] = preg_replace("#&(?!\#[0-9]+;)#si", "&", $forum['description']); $forum['description'] = "<br /><small>".$forum['description']."</small>"; }
|
Zeile 2723 | Zeile 2757 |
---|
$sub_forums = ''; if(isset($forums_by_parent[$forum['fid']]) && $depth == 2) {
|
$sub_forums = ''; if(isset($forums_by_parent[$forum['fid']]) && $depth == 2) {
|
build_admincp_forums_list($form_container, $forum['fid'], $depth+1);
| build_admincp_forums_list($form_container, $form, $forum['fid'], $depth+1);
|
} if($sub_forums) {
| } if($sub_forums) {
|
Zeile 2732 | Zeile 2766 |
---|
$form_container->output_cell("<div style=\"padding-left: ".(40*($depth-1))."px;\"><a href=\"index.php?module=forum-management&fid={$forum['fid']}\">{$forum['name']}</a>{$forum['description']}{$sub_forums}</div>");
|
$form_container->output_cell("<div style=\"padding-left: ".(40*($depth-1))."px;\"><a href=\"index.php?module=forum-management&fid={$forum['fid']}\">{$forum['name']}</a>{$forum['description']}{$sub_forums}</div>");
|
$form_container->output_cell("<input type=\"text\" name=\"disporder[".$forum['fid']."]\" value=\"".$forum['disporder']."\" class=\"text_input align_center\" style=\"width: 80%;\" />", array("class" => "align_center"));
| $form_container->output_cell($form->generate_numeric_field("disporder[{$forum['fid']}]", "{$forum['disporder']}", array('min' => 0, 'class' => 'align_center', 'style' => 'width:80%')), array("class" => "align_center"));
|
$popup = new PopupMenu("forum_{$forum['fid']}", $lang->options); $popup->add_item($lang->edit_forum, "index.php?module=forum-management&action=edit&fid={$forum['fid']}"); $popup->add_item($lang->subforums, "index.php?module=forum-management&fid={$forum['fid']}"); $popup->add_item($lang->moderators, "index.php?module=forum-management&fid={$forum['fid']}#tab_moderators"); $popup->add_item($lang->permissions, "index.php?module=forum-management&fid={$forum['fid']}#tab_permissions");
|
$popup = new PopupMenu("forum_{$forum['fid']}", $lang->options); $popup->add_item($lang->edit_forum, "index.php?module=forum-management&action=edit&fid={$forum['fid']}"); $popup->add_item($lang->subforums, "index.php?module=forum-management&fid={$forum['fid']}"); $popup->add_item($lang->moderators, "index.php?module=forum-management&fid={$forum['fid']}#tab_moderators"); $popup->add_item($lang->permissions, "index.php?module=forum-management&fid={$forum['fid']}#tab_permissions");
|
| $popup->add_item($lang->forum_thread_prefixes, "index.php?module=config-thread_prefixes&fid={$forum['fid']}");
|
$popup->add_item($lang->add_child_forum, "index.php?module=forum-management&action=add&pid={$forum['fid']}"); $popup->add_item($lang->copy_forum, "index.php?module=forum-management&action=copy&fid={$forum['fid']}"); $popup->add_item($lang->delete_forum, "index.php?module=forum-management&action=delete&fid={$forum['fid']}&my_post_key={$mybb->post_code}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_forum_deletion}')");
| $popup->add_item($lang->add_child_forum, "index.php?module=forum-management&action=add&pid={$forum['fid']}"); $popup->add_item($lang->copy_forum, "index.php?module=forum-management&action=copy&fid={$forum['fid']}"); $popup->add_item($lang->delete_forum, "index.php?module=forum-management&action=delete&fid={$forum['fid']}&my_post_key={$mybb->post_code}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_forum_deletion}')");
|
Zeile 2749 | Zeile 2783 |
---|
if(isset($forums_by_parent[$forum['fid']]) && $depth == 1) {
|
if(isset($forums_by_parent[$forum['fid']]) && $depth == 1) {
|
build_admincp_forums_list($form_container, $forum['fid'], $depth+1);
| build_admincp_forums_list($form_container, $form, $forum['fid'], $depth+1);
|
} } else if($depth == 3)
| } } else if($depth == 3)
|