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 333 | Zeile 333 |
---|
$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='".$mybb->get_input('iid', MyBB::INPUT_INT)."'");
| $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 410 | Zeile 410 |
---|
$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 444 | Zeile 444 |
---|
);
$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 {
| } else {
|
Zeile 465 | Zeile 474 |
---|
while($icon = $db->fetch_array($query)) { $icon['path'] = str_replace("{theme}", "images", $icon['path']);
|
while($icon = $db->fetch_array($query)) { $icon['path'] = str_replace("{theme}", "images", $icon['path']);
|
if(my_strpos($icon['path'], "p://") || substr($icon['path'], 0, 1) == "/")
| if(my_validate_url($icon['path'], true))
|
{ $image = $icon['path'];
|
{ $image = $icon['path'];
|
}
| }
|
else { $image = "../".$icon['path'];
| else { $image = "../".$icon['path'];
|
Zeile 479 | Zeile 488 |
---|
$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("<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}");
|