Zeile 48 | Zeile 48 |
---|
$cache->update_posticons();
// Log admin action
|
$cache->update_posticons();
// Log admin action
|
log_admin_action($iid, htmlspecialchars_uni($mybb->input['name']));
| log_admin_action($iid, $mybb->input['name']);
|
flash_message($lang->success_post_icon_added, 'success'); admin_redirect('index.php?module=config-post_icons');
| flash_message($lang->success_post_icon_added, 'success'); admin_redirect('index.php?module=config-post_icons');
|
Zeile 87 | Zeile 87 |
---|
$form = new Form("index.php?module=config-post_icons&action=add", "post", "add"); $form_container = new FormContainer($lang->add_post_icon);
|
$form = new Form("index.php?module=config-post_icons&action=add", "post", "add"); $form_container = new FormContainer($lang->add_post_icon);
|
$form_container->output_row($lang->name." <em>*</em>", $lang->name_desc, $form->generate_text_box('name', $mybb->input['name'], array('id' => 'name')), 'name');
| $form_container->output_row($lang->name." <em>*</em>", $lang->name_desc, $form->generate_text_box('name', $mybb->get_input('name'), array('id' => 'name')), 'name');
|
$form_container->output_row($lang->image_path." <em>*</em>", $lang->image_path_desc, $form->generate_text_box('path', $mybb->input['path'], array('id' => 'path')), 'path'); $form_container->end();
| $form_container->output_row($lang->image_path." <em>*</em>", $lang->image_path_desc, $form->generate_text_box('path', $mybb->input['path'], array('id' => 'path')), 'path'); $form_container->end();
|
Zeile 143 | Zeile 143 |
---|
$ext = get_extension($file); if($ext == "gif" || $ext == "jpg" || $ext == "jpeg" || $ext == "png" || $ext == "bmp") {
|
$ext = get_extension($file); if($ext == "gif" || $ext == "jpg" || $ext == "jpeg" || $ext == "png" || $ext == "bmp") {
|
if(!$aicons[$path.$file])
| if(!isset($aicons[$path.$file]))
|
{ $icons[] = $file; }
| { $icons[] = $file; }
|
Zeile 281 | Zeile 281 |
---|
$form = new Form("index.php?module=config-post_icons&action=add_multiple", "post", "add_multiple"); echo $form->generate_hidden_field("step", "1");
|
$form = new Form("index.php?module=config-post_icons&action=add_multiple", "post", "add_multiple"); echo $form->generate_hidden_field("step", "1");
|
if($errors) { $page->output_inline_error($errors); }
| if($errors) { $page->output_inline_error($errors); }
|
$form_container = new FormContainer($lang->add_multiple_post_icons);
|
$form_container = new FormContainer($lang->add_multiple_post_icons);
|
$form_container->output_row($lang->path_to_images." <em>*</em>", $lang->path_to_images_desc, $form->generate_text_box('pathfolder', $mybb->input['pathfolder'], array('id' => 'pathfolder')), 'pathfolder');
| $form_container->output_row($lang->path_to_images." <em>*</em>", $lang->path_to_images_desc, $form->generate_text_box('pathfolder', $mybb->get_input('pathfolder'), array('id' => 'pathfolder')), 'pathfolder');
|
$form_container->end();
$buttons[] = $form->generate_submit_button($lang->show_post_icons);
| $form_container->end();
$buttons[] = $form->generate_submit_button($lang->show_post_icons);
|
Zeile 304 | Zeile 304 |
---|
$query = $db->simple_select("icons", "*", "iid='".$mybb->get_input('iid', MyBB::INPUT_INT)."'"); $icon = $db->fetch_array($query);
|
$query = $db->simple_select("icons", "*", "iid='".$mybb->get_input('iid', MyBB::INPUT_INT)."'"); $icon = $db->fetch_array($query);
|
if(!$icon['iid'])
| if(!$icon)
|
{ flash_message($lang->error_invalid_post_icon, 'error'); admin_redirect("index.php?module=config-post_icons");
| { flash_message($lang->error_invalid_post_icon, 'error'); admin_redirect("index.php?module=config-post_icons");
|
Zeile 320 | Zeile 320 |
---|
}
if(!trim($mybb->input['path']))
|
}
if(!trim($mybb->input['path']))
|
{
| {
|
$errors[] = $lang->error_missing_path; }
| $errors[] = $lang->error_missing_path; }
|
Zeile 332 | Zeile 332 |
---|
);
$plugins->run_hooks("admin_config_post_icons_edit_commit");
|
);
$plugins->run_hooks("admin_config_post_icons_edit_commit");
|
|
|
$db->update_query("icons", $updated_icon, "iid='{$icon['iid']}'");
|
$db->update_query("icons", $updated_icon, "iid='{$icon['iid']}'");
|
|
|
$cache->update_posticons();
// Log admin action
|
$cache->update_posticons();
// Log admin action
|
log_admin_action($icon['iid'], htmlspecialchars_uni($mybb->input['name']));
| log_admin_action($icon['iid'], $mybb->input['name']);
|
flash_message($lang->success_post_icon_updated, 'success'); admin_redirect('index.php?module=config-post_icons'); }
| flash_message($lang->success_post_icon_updated, 'success'); admin_redirect('index.php?module=config-post_icons'); }
|
Zeile 358 | Zeile 358 |
---|
$form = new Form("index.php?module=config-post_icons&action=edit", "post", "edit"); echo $form->generate_hidden_field("iid", $icon['iid']);
|
$form = new Form("index.php?module=config-post_icons&action=edit", "post", "edit"); echo $form->generate_hidden_field("iid", $icon['iid']);
|
|
|
if($errors) { $page->output_inline_error($errors); } else
|
if($errors) { $page->output_inline_error($errors); } else
|
{
| {
|
$mybb->input = array_merge($mybb->input, $icon); }
| $mybb->input = array_merge($mybb->input, $icon); }
|
Zeile 387 | Zeile 387 |
---|
$query = $db->simple_select("icons", "*", "iid='".$mybb->get_input('iid', MyBB::INPUT_INT)."'"); $icon = $db->fetch_array($query);
|
$query = $db->simple_select("icons", "*", "iid='".$mybb->get_input('iid', MyBB::INPUT_INT)."'"); $icon = $db->fetch_array($query);
|
if(!$icon['iid'])
| if(!$icon)
|
{ flash_message($lang->error_invalid_post_icon, 'error'); admin_redirect("index.php?module=config-post_icons"); }
|
{ flash_message($lang->error_invalid_post_icon, 'error'); admin_redirect("index.php?module=config-post_icons"); }
|
// User clicked no if($mybb->input['no']) { admin_redirect("index.php?module=config-post_icons"); }
| // User clicked no if($mybb->get_input('no')) { admin_redirect("index.php?module=config-post_icons"); }
|
$plugins->run_hooks("admin_config_post_icons_delete");
if($mybb->request_method == "post") { $db->delete_query("icons", "iid='{$icon['iid']}'");
|
$plugins->run_hooks("admin_config_post_icons_delete");
if($mybb->request_method == "post") { $db->delete_query("icons", "iid='{$icon['iid']}'");
|
|
|
$plugins->run_hooks("admin_config_post_icons_delete_commit");
|
$plugins->run_hooks("admin_config_post_icons_delete_commit");
|
|
|
$cache->update_posticons();
// Log admin action
|
$cache->update_posticons();
// Log admin action
|
log_admin_action($icon['iid'], htmlspecialchars_uni($icon['name']));
| log_admin_action($icon['iid'], $icon['name']);
|
flash_message($lang->success_post_icon_deleted, 'success'); admin_redirect("index.php?module=config-post_icons"); }
| flash_message($lang->success_post_icon_deleted, 'success'); admin_redirect("index.php?module=config-post_icons"); }
|
Zeile 424 | Zeile 424 |
---|
if(!$mybb->input['action']) { $plugins->run_hooks("admin_config_post_icons_start");
|
if(!$mybb->input['action']) { $plugins->run_hooks("admin_config_post_icons_start");
|
|
|
$page->output_header($lang->post_icons);
$sub_tabs['manage_icons'] = array(
| $page->output_header($lang->post_icons);
$sub_tabs['manage_icons'] = array(
|
Zeile 436 | Zeile 436 |
---|
$sub_tabs['add_icon'] = array( 'title' => $lang->add_post_icon, 'link' => "index.php?module=config-post_icons&action=add"
|
$sub_tabs['add_icon'] = array( 'title' => $lang->add_post_icon, 'link' => "index.php?module=config-post_icons&action=add"
|
);
| );
|
$sub_tabs['add_multiple'] = array( 'title' => $lang->add_multiple_post_icons, 'link' => "index.php?module=config-post_icons&action=add_multiple" );
|
$sub_tabs['add_multiple'] = array( 'title' => $lang->add_multiple_post_icons, 'link' => "index.php?module=config-post_icons&action=add_multiple" );
|
|
|
$page->output_nav_tabs($sub_tabs, 'manage_icons');
|
$page->output_nav_tabs($sub_tabs, 'manage_icons');
|
| $query = $db->simple_select("icons", "COUNT(iid) AS icons"); $total_rows = $db->fetch_field($query, "icons");
|
$pagenum = $mybb->get_input('page', MyBB::INPUT_INT); if($pagenum) { $start = ($pagenum - 1) * 20;
|
$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;
|
else { $start = 0; $pagenum = 1;
|
}
| }
|
$table = new Table; $table->construct_header($lang->image, array('class' => "align_center", 'width' => 1)); $table->construct_header($lang->name, array('width' => "70%"));
| $table = new Table; $table->construct_header($lang->image, array('class' => "align_center", 'width' => 1)); $table->construct_header($lang->name, array('width' => "70%"));
|
Zeile 473 | Zeile 482 |
---|
{ $image = "../".$icon['path']; }
|
{ $image = "../".$icon['path']; }
|
|
|
$table->construct_cell("<img src=\"".htmlspecialchars_uni($image)."\" alt=\"\" />", array("class" => "align_center")); $table->construct_cell(htmlspecialchars_uni($icon['name']));
$table->construct_cell("<a href=\"index.php?module=config-post_icons&action=edit&iid={$icon['iid']}\">{$lang->edit}</a>", array("class" => "align_center")); $table->construct_cell("<a href=\"index.php?module=config-post_icons&action=delete&iid={$icon['iid']}&my_post_key={$mybb->post_code}\" onclick=\"return AdminCP.deleteConfirmation(this, '{$lang->confirm_post_icon_deletion}')\">{$lang->delete}</a>", array("class" => "align_center"));
|
$table->construct_cell("<img src=\"".htmlspecialchars_uni($image)."\" alt=\"\" />", array("class" => "align_center")); $table->construct_cell(htmlspecialchars_uni($icon['name']));
$table->construct_cell("<a href=\"index.php?module=config-post_icons&action=edit&iid={$icon['iid']}\">{$lang->edit}</a>", array("class" => "align_center")); $table->construct_cell("<a href=\"index.php?module=config-post_icons&action=delete&iid={$icon['iid']}&my_post_key={$mybb->post_code}\" onclick=\"return AdminCP.deleteConfirmation(this, '{$lang->confirm_post_icon_deletion}')\">{$lang->delete}</a>", array("class" => "align_center"));
|
$table->construct_row();
| $table->construct_row();
|
}
if($table->num_rows() == 0)
| }
if($table->num_rows() == 0)
|
Zeile 489 | Zeile 498 |
---|
}
$table->output($lang->manage_post_icons);
|
}
$table->output($lang->manage_post_icons);
|
$query = $db->simple_select("icons", "COUNT(iid) AS icons"); $total_rows = $db->fetch_field($query, "icons");
| |
echo "<br />".draw_admin_pagination($pagenum, "20", $total_rows, "index.php?module=config-post_icons&page={page}");
| echo "<br />".draw_admin_pagination($pagenum, "20", $total_rows, "index.php?module=config-post_icons&page={page}");
|