Zeile 89 | Zeile 89 |
---|
"maxsize" => $maxsize, "icon" => $db->escape_string($mybb->input['icon']), 'enabled' => $mybb->get_input('enabled', MyBB::INPUT_INT),
|
"maxsize" => $maxsize, "icon" => $db->escape_string($mybb->input['icon']), 'enabled' => $mybb->get_input('enabled', MyBB::INPUT_INT),
|
| 'forcedownload' => $mybb->get_input('forcedownload', MyBB::INPUT_INT),
|
'groups' => $db->escape_string($mybb->get_input('groups')), 'forums' => $db->escape_string($mybb->get_input('forums')), 'avatarfile' => $mybb->get_input('avatarfile', MyBB::INPUT_INT)
| 'groups' => $db->escape_string($mybb->get_input('groups')), 'forums' => $db->escape_string($mybb->get_input('forums')), 'avatarfile' => $mybb->get_input('avatarfile', MyBB::INPUT_INT)
|
Zeile 99 | Zeile 100 |
---|
$plugins->run_hooks("admin_config_attachment_types_add_commit");
// Log admin action
|
$plugins->run_hooks("admin_config_attachment_types_add_commit");
// Log admin action
|
log_admin_action($atid, htmlspecialchars_uni($mybb->input['extension']));
| log_admin_action($atid, $mybb->input['extension']);
|
$cache->update_attachtypes();
| $cache->update_attachtypes();
|
Zeile 278 | Zeile 279 |
---|
<script type=\"text/javascript\"> checkAction('forums'); </script>";
|
<script type=\"text/javascript\"> checkAction('forums'); </script>";
|
| $mybb->input['forcedownload'] = $mybb->get_input('forcedownload', MyBB::INPUT_INT);
|
$form_container = new FormContainer($lang->add_new_attachment_type);
|
$form_container = new FormContainer($lang->add_new_attachment_type);
|
$form_container->output_row($lang->name, $lang->name_desc, $form->generate_text_box('name', $mybb->input['name'], array('id' => 'name')), 'name'); $form_container->output_row($lang->file_extension." <em>*</em>", $lang->file_extension_desc, $form->generate_text_box('extension', $mybb->input['extension'], array('id' => 'extension')), 'extension'); $form_container->output_row($lang->mime_type." <em>*</em>", $lang->mime_type_desc, $form->generate_text_box('mimetype', $mybb->input['mimetype'], array('id' => 'mimetype')), 'mimetype'); $form_container->output_row($lang->maximum_file_size, $lang->maximum_file_size_desc.$limit_string, $form->generate_numeric_field('maxsize', $mybb->input['maxsize'], array('id' => 'maxsize', 'min' => 0)), 'maxsize'); $form_container->output_row($lang->attachment_icon, $lang->attachment_icon_desc, $form->generate_text_box('icon', $mybb->input['icon'], array('id' => 'icon')), 'icon'); $form_container->output_row($lang->enabled, '', $form->generate_yes_no_radio('enabled', $mybb->input['enabled']), 'enabled');
| $form_container->output_row($lang->name, $lang->name_desc, $form->generate_text_box('name', $mybb->get_input('name'), array('id' => 'name')), 'name'); $form_container->output_row($lang->file_extension." <em>*</em>", $lang->file_extension_desc, $form->generate_text_box('extension', $mybb->get_input('extension'), array('id' => 'extension')), 'extension'); $form_container->output_row($lang->mime_type." <em>*</em>", $lang->mime_type_desc, $form->generate_text_box('mimetype', $mybb->get_input('mimetype'), array('id' => 'mimetype')), 'mimetype'); $form_container->output_row($lang->maximum_file_size, $lang->maximum_file_size_desc.$limit_string, $form->generate_numeric_field('maxsize', $mybb->get_input('maxsize'), array('id' => 'maxsize', 'min' => 0)), 'maxsize'); $form_container->output_row($lang->attachment_icon, $lang->attachment_icon_desc, $form->generate_text_box('icon', $mybb->get_input('icon'), array('id' => 'icon')), 'icon'); $form_container->output_row($lang->enabled, '', $form->generate_yes_no_radio('enabled', $mybb->get_input('enabled')), 'enabled'); $form_container->output_row($lang->forcedownload, $lang->forcedownload_desc, $form->generate_yes_no_radio('forcedownload', $mybb->get_input('forcedownload')), 'forcedownload');
|
$form_container->output_row($lang->available_to_groups, '', $groups_select_code, '', array(), array('id' => 'row_groups')); $form_container->output_row($lang->available_in_forums, '', $forums_select_code, '', array(), array('id' => 'row_forums'));
|
$form_container->output_row($lang->available_to_groups, '', $groups_select_code, '', array(), array('id' => 'row_groups')); $form_container->output_row($lang->available_in_forums, '', $forums_select_code, '', array(), array('id' => 'row_forums'));
|
$form_container->output_row($lang->avatar_file, $lang->avatar_file_desc, $form->generate_yes_no_radio('avatarfile', $mybb->input['avatarfile']), 'avatarfile');
| $form_container->output_row($lang->avatar_file, $lang->avatar_file_desc, $form->generate_yes_no_radio('avatarfile', $mybb->get_input('avatarfile')), 'avatarfile');
|
$form_container->end();
| $form_container->end();
|
Zeile 373 | Zeile 377 |
---|
"maxsize" => $mybb->get_input('maxsize', MyBB::INPUT_INT), "icon" => $db->escape_string($mybb->input['icon']), 'enabled' => $mybb->get_input('enabled', MyBB::INPUT_INT),
|
"maxsize" => $mybb->get_input('maxsize', MyBB::INPUT_INT), "icon" => $db->escape_string($mybb->input['icon']), 'enabled' => $mybb->get_input('enabled', MyBB::INPUT_INT),
|
| 'forcedownload' => $mybb->get_input('forcedownload', MyBB::INPUT_INT),
|
'groups' => $db->escape_string($mybb->get_input('groups')), 'forums' => $db->escape_string($mybb->get_input('forums')), 'avatarfile' => $mybb->get_input('avatarfile', MyBB::INPUT_INT)
| 'groups' => $db->escape_string($mybb->get_input('groups')), 'forums' => $db->escape_string($mybb->get_input('forums')), 'avatarfile' => $mybb->get_input('avatarfile', MyBB::INPUT_INT)
|
Zeile 383 | Zeile 388 |
---|
$db->update_query("attachtypes", $updated_type, "atid='{$attachment_type['atid']}'");
// Log admin action
|
$db->update_query("attachtypes", $updated_type, "atid='{$attachment_type['atid']}'");
// Log admin action
|
log_admin_action($attachment_type['atid'], htmlspecialchars_uni($mybb->input['extension']));
| log_admin_action($attachment_type['atid'], $mybb->input['extension']);
|
$cache->update_attachtypes();
| $cache->update_attachtypes();
|
Zeile 448 | Zeile 453 |
---|
if(empty($mybb->input['forums'])) { $mybb->input['forums'] = '';
|
if(empty($mybb->input['forums'])) { $mybb->input['forums'] = '';
|
}
| }
|
// PHP settings $upload_max_filesize = @ini_get('upload_max_filesize'); $post_max_size = @ini_get('post_max_size');
| // PHP settings $upload_max_filesize = @ini_get('upload_max_filesize'); $post_max_size = @ini_get('post_max_size');
|
Zeile 504 | Zeile 509 |
---|
<tr> <td valign=\"top\"><small>{$lang->groups_colon}</small></td> <td>".$form->generate_group_select('select[groups][]', $selected_values, array('id' => 'groups', 'multiple' => true, 'size' => 5))."</td>
|
<tr> <td valign=\"top\"><small>{$lang->groups_colon}</small></td> <td>".$form->generate_group_select('select[groups][]', $selected_values, array('id' => 'groups', 'multiple' => true, 'size' => 5))."</td>
|
</tr> </table> </dd>
| </tr> </table> </dd>
|
<dt><label style=\"display: block;\"><input type=\"radio\" name=\"groups\" value=\"none\" {$group_checked['none']} class=\"groups_forums_groups_check\" onclick=\"checkAction('groups');\" style=\"vertical-align: middle;\" /> <strong>{$lang->none}</strong></label></dt> </dl> <script type=\"text/javascript\">
| <dt><label style=\"display: block;\"><input type=\"radio\" name=\"groups\" value=\"none\" {$group_checked['none']} class=\"groups_forums_groups_check\" onclick=\"checkAction('groups');\" style=\"vertical-align: middle;\" /> <strong>{$lang->none}</strong></label></dt> </dl> <script type=\"text/javascript\">
|
Zeile 531 | Zeile 536 |
---|
$forum_checked['all'] = 'checked="checked"'; } elseif($mybb->input['forums'] != '')
|
$forum_checked['all'] = 'checked="checked"'; } elseif($mybb->input['forums'] != '')
|
{
| {
|
$forum_checked['custom'] = 'checked="checked"'; } else
| $forum_checked['custom'] = 'checked="checked"'; } else
|
Zeile 556 | Zeile 561 |
---|
<script type=\"text/javascript\"> checkAction('forums'); </script>";
|
<script type=\"text/javascript\"> checkAction('forums'); </script>";
|
| $mybb->input['forcedownload'] = $mybb->get_input('forcedownload', MyBB::INPUT_INT);
|
$form_container = new FormContainer($lang->edit_attachment_type); $form_container->output_row($lang->name, $lang->name_desc, $form->generate_text_box('name', $mybb->input['name'], array('id' => 'name')), 'name');
| $form_container = new FormContainer($lang->edit_attachment_type); $form_container->output_row($lang->name, $lang->name_desc, $form->generate_text_box('name', $mybb->input['name'], array('id' => 'name')), 'name');
|
Zeile 564 | Zeile 571 |
---|
$form_container->output_row($lang->maximum_file_size, $lang->maximum_file_size_desc.$limit_string, $form->generate_numeric_field('maxsize', $mybb->input['maxsize'], array('id' => 'maxsize', 'min' => 0)), 'maxsize'); $form_container->output_row($lang->attachment_icon, $lang->attachment_icon_desc, $form->generate_text_box('icon', $mybb->input['icon'], array('id' => 'icon')), 'icon'); $form_container->output_row($lang->enabled, '', $form->generate_yes_no_radio('enabled', $mybb->input['enabled']), 'enabled');
|
$form_container->output_row($lang->maximum_file_size, $lang->maximum_file_size_desc.$limit_string, $form->generate_numeric_field('maxsize', $mybb->input['maxsize'], array('id' => 'maxsize', 'min' => 0)), 'maxsize'); $form_container->output_row($lang->attachment_icon, $lang->attachment_icon_desc, $form->generate_text_box('icon', $mybb->input['icon'], array('id' => 'icon')), 'icon'); $form_container->output_row($lang->enabled, '', $form->generate_yes_no_radio('enabled', $mybb->input['enabled']), 'enabled');
|
| $form_container->output_row($lang->forcedownload, $lang->forcedownload_desc, $form->generate_yes_no_radio('forcedownload', $mybb->input['forcedownload']), 'forcedownload');
|
$form_container->output_row($lang->available_to_groups, '', $groups_select_code, '', array(), array('id' => 'row_groups')); $form_container->output_row($lang->available_in_forums, '', $forums_select_code, '', array(), array('id' => 'row_forums')); $form_container->output_row($lang->avatar_file, $lang->avatar_file_desc, $form->generate_yes_no_radio('avatarfile', $mybb->input['avatarfile']), 'avatarfile');
| $form_container->output_row($lang->available_to_groups, '', $groups_select_code, '', array(), array('id' => 'row_groups')); $form_container->output_row($lang->available_in_forums, '', $forums_select_code, '', array(), array('id' => 'row_forums')); $form_container->output_row($lang->avatar_file, $lang->avatar_file_desc, $form->generate_yes_no_radio('avatarfile', $mybb->input['avatarfile']), 'avatarfile');
|
Zeile 580 | Zeile 588 |
---|
if($mybb->input['action'] == "delete") {
|
if($mybb->input['action'] == "delete") {
|
if($mybb->input['no'])
| if($mybb->get_input('no'))
|
{ admin_redirect("index.php?module=config-attachment_types"); }
| { admin_redirect("index.php?module=config-attachment_types"); }
|
Zeile 605 | Zeile 613 |
---|
$cache->update_attachtypes();
// Log admin action
|
$cache->update_attachtypes();
// Log admin action
|
log_admin_action($attachment_type['atid'], htmlspecialchars_uni($attachment_type['extension']));
| log_admin_action($attachment_type['atid'], $attachment_type['extension']);
|
flash_message($lang->success_attachment_type_deleted, 'success'); admin_redirect("index.php?module=config-attachment_types");
| flash_message($lang->success_attachment_type_deleted, 'success'); admin_redirect("index.php?module=config-attachment_types");
|
Zeile 618 | Zeile 626 |
---|
if($mybb->input['action'] == 'toggle_status') {
|
if($mybb->input['action'] == 'toggle_status') {
|
if(!verify_post_check($mybb->input['my_post_key']))
| if(!verify_post_check($mybb->get_input('my_post_key')))
|
{ flash_message($lang->invalid_post_verify_key2, 'error');
|
{ flash_message($lang->invalid_post_verify_key2, 'error');
|
admin_redirect('index.php?module=config-attachment_types'); }
| admin_redirect('index.php?module=config-attachment_types'); }
|
$atid = $mybb->get_input('atid', MyBB::INPUT_INT);
$query = $db->simple_select('attachtypes', '*', "atid='{$atid}'");
| $atid = $mybb->get_input('atid', MyBB::INPUT_INT);
$query = $db->simple_select('attachtypes', '*', "atid='{$atid}'");
|
Zeile 642 | Zeile 650 |
---|
if($attachment_type['enabled'] == 1) { $update_array['enabled'] = 0;
|
if($attachment_type['enabled'] == 1) { $update_array['enabled'] = 0;
|
$phrase = $lang->success_activated_attachment_type; }
$plugins->run_hooks('admin_config_attachment_types_toggle_status_commit');
| $phrase = $lang->success_deactivated_attachment_type; }
$plugins->run_hooks('admin_config_attachment_types_toggle_status_commit');
|
$db->update_query('attachtypes', $update_array, "atid='{$atid}'");
$cache->update_attachtypes();
// Log admin action
|
$db->update_query('attachtypes', $update_array, "atid='{$atid}'");
$cache->update_attachtypes();
// Log admin action
|
log_admin_action($atid, htmlspecialchars_uni($attachment_type['extension']), $update_array['enabled']);
| log_admin_action($atid, $attachment_type['extension'], $update_array['enabled']);
|
flash_message($phrase, 'success'); admin_redirect('index.php?module=config-attachment_types');
| flash_message($phrase, 'success'); admin_redirect('index.php?module=config-attachment_types');
|
Zeile 661 | Zeile 669 |
---|
if(!$mybb->input['action']) { $page->output_header($lang->attachment_types);
|
if(!$mybb->input['action']) { $page->output_header($lang->attachment_types);
|
|
|
$sub_tabs['attachment_types'] = array( 'title' => $lang->attachment_types, 'link' => "index.php?module=config-attachment_types",
| $sub_tabs['attachment_types'] = array( 'title' => $lang->attachment_types, 'link' => "index.php?module=config-attachment_types",
|
Zeile 675 | Zeile 683 |
---|
$plugins->run_hooks("admin_config_attachment_types_start");
$page->output_nav_tabs($sub_tabs, 'attachment_types');
|
$plugins->run_hooks("admin_config_attachment_types_start");
$page->output_nav_tabs($sub_tabs, 'attachment_types');
|
| $query = $db->simple_select("attachtypes", "COUNT(atid) AS attachtypes"); $total_rows = $db->fetch_field($query, "attachtypes");
$pagenum = $mybb->get_input('page', MyBB::INPUT_INT); if($pagenum) { $start = ($pagenum - 1) * 20; $pages = ceil($total_rows / 20); if($pagenum > $pages) { $start = 0; $pagenum = 1; } } else { $start = 0; $pagenum = 1; }
|
$table = new Table; $table->construct_header($lang->extension, array("colspan" => 2));
| $table = new Table; $table->construct_header($lang->extension, array("colspan" => 2));
|
Zeile 682 | Zeile 710 |
---|
$table->construct_header($lang->alt_enabled, array('class' => 'align_center')); $table->construct_header($lang->maximum_size, array("class" => "align_center")); $table->construct_header($lang->controls, array("class" => "align_center"));
|
$table->construct_header($lang->alt_enabled, array('class' => 'align_center')); $table->construct_header($lang->maximum_size, array("class" => "align_center")); $table->construct_header($lang->controls, array("class" => "align_center"));
|
$query = $db->simple_select("attachtypes", "*", "", array('order_by' => 'extension'));
| $query = $db->simple_select("attachtypes", "*", "", array('limit_start' => $start, 'limit' => 20, 'order_by' => 'extension'));
|
while($attachment_type = $db->fetch_array($query)) { // Just show default icons in ACP
| while($attachment_type = $db->fetch_array($query)) { // Just show default icons in ACP
|
Zeile 711 | Zeile 739 |
---|
{ $phrase = $lang->disable; $icon = "on.png\" alt=\"({$lang->alt_enabled})\" title=\"{$lang->alt_enabled}";
|
{ $phrase = $lang->disable; $icon = "on.png\" alt=\"({$lang->alt_enabled})\" title=\"{$lang->alt_enabled}";
|
}
| }
|
else { $phrase = $lang->enable; $icon = "off.png\" alt=\"({$lang->alt_disabled})\" title=\"{$lang->alt_disabled}"; }
|
else { $phrase = $lang->enable; $icon = "off.png\" alt=\"({$lang->alt_disabled})\" title=\"{$lang->alt_disabled}"; }
|
| $attachment_type['extension'] = htmlspecialchars_uni($attachment_type['extension']);
|
$table->construct_cell($attachment_type['icon'], array("width" => 1)); $table->construct_cell("<strong>.{$attachment_type['extension']}</strong>");
| $table->construct_cell($attachment_type['icon'], array("width" => 1)); $table->construct_cell("<strong>.{$attachment_type['extension']}</strong>");
|
Zeile 729 | Zeile 759 |
---|
$popup->add_item($phrase, "index.php?module=config-attachment_types&action=toggle_status&atid={$attachment_type['atid']}&my_post_key={$mybb->post_code}"); $popup->add_item($lang->delete, "index.php?module=config-attachment_types&action=delete&atid={$attachment_type['atid']}&my_post_key={$mybb->post_code}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_attachment_type_deletion}')"); $table->construct_cell($popup->fetch(), array('class' => 'align_center'));
|
$popup->add_item($phrase, "index.php?module=config-attachment_types&action=toggle_status&atid={$attachment_type['atid']}&my_post_key={$mybb->post_code}"); $popup->add_item($lang->delete, "index.php?module=config-attachment_types&action=delete&atid={$attachment_type['atid']}&my_post_key={$mybb->post_code}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_attachment_type_deletion}')"); $table->construct_cell($popup->fetch(), array('class' => 'align_center'));
|
$table->construct_row(); }
| $table->construct_row(); }
|
if($table->num_rows() == 0) { $table->construct_cell($lang->no_attachment_types, array('colspan' => 6)); $table->construct_row(); }
|
if($table->num_rows() == 0) { $table->construct_cell($lang->no_attachment_types, array('colspan' => 6)); $table->construct_row(); }
|
|
|
$table->output($lang->attachment_types);
|
$table->output($lang->attachment_types);
|
| echo "<br />".draw_admin_pagination($pagenum, "20", $total_rows, "index.php?module=config-attachment_types&page={page}");
|
$page->output_footer(); }
| $page->output_footer(); }
|