diff --git a/e107_admin/admin_log.php b/e107_admin/admin_log.php index 766421b16..2485ffe3c 100644 --- a/e107_admin/admin_log.php +++ b/e107_admin/admin_log.php @@ -9,8 +9,8 @@ * Administration Area - Admin Log * * $Source: /cvs_backup/e107_0.8/e107_admin/admin_log.php,v $ - * $Revision: 1.23 $ - * $Date: 2008-12-16 14:24:04 $ + * $Revision: 1.24 $ + * $Date: 2008-12-20 15:23:48 $ * $Author: secretr $ * */ @@ -427,7 +427,7 @@ if($action == "config") "; } $text .= " -
".$frm->admin_button('check_all', 'jstarget:user_audit_opts', 'action', 'Check All').$frm->admin_button('uncheck_all', 'jstarget:user_audit_opts', 'action', 'Uncheck All')."
+
".$frm->admin_button('check_all', 'jstarget:user_audit_opts', 'action', LAN_CHECKALL).$frm->admin_button('uncheck_all', 'jstarget:user_audit_opts', 'action', LAN_UNCHECKALL)."
"; diff --git a/e107_admin/administrator.php b/e107_admin/administrator.php index 44244ec98..e13b80d60 100644 --- a/e107_admin/administrator.php +++ b/e107_admin/administrator.php @@ -9,26 +9,41 @@ * Administrators Management * * $Source: /cvs_backup/e107_0.8/e107_admin/administrator.php,v $ - * $Revision: 1.9 $ - * $Date: 2008-12-02 00:32:30 $ + * $Revision: 1.10 $ + * $Date: 2008-12-20 15:23:48 $ * $Author: secretr $ + * */ + require_once('../class2.php'); if (!getperms('3')) { - header('location:'.e_BASE.'index.php'); + header('Location:'.SITEURL.'index.php'); exit; } + +if(isset($_POST['go_back'])) +{ //return to listing - clear all posted data + header('Location:'.e_ADMIN_ABS.e_PAGE); + exit; +} + $e_sub_cat = 'admin'; require_once('auth.php'); + +require_once(e_HANDLER."form_handler.php"); +require_once(e_HANDLER."message_handler.php"); +$frm = new e_form(true); +$emessage = &eMessage::getInstance(); + $action = ''; $sub_action = -1; if (e_QUERY) { $tmp = explode(".", e_QUERY); $action = $tmp[0]; // Used when called from elsewhere - $sub_action = varset($tmp[1],-1); // User ID + $sub_action = varset($tmp[1],-1); // User ID unset($tmp); } @@ -61,9 +76,9 @@ if (isset($_POST['update_admin'])) } } - admin_update($sql -> db_Update("user", "user_perms='{$perm}' WHERE user_id='{$modID}' "), 'update', ADMSLAN_56." ".$tp->toDB($_POST['ad_name'])." ".ADMSLAN_2."
"); + admin_update($sql->db_Update("user", "user_perms='{$perm}' WHERE user_id='{$modID}' "), 'update', sprintf(ADMSLAN_2, $tp->toDB($_POST['ad_name'])), false, false); $logMsg = str_replace(array('--ID--', '--NAME--'),array($modID, $a_name),ADMSLAN_72).$perm; - $admin_log->log_event('ADMIN_01',$logMsg,E_LOG_INFORMATIVE,''); + $admin_log->log_event('ADMIN_01',$logMsg,E_LOG_INFORMATIVE,''); unset($modID, $ad_name, $a_perms); } @@ -75,19 +90,8 @@ if (isset($_POST['edit_admin']) || $action == "edit") if ((!$sql->db_Select("user", "*", "user_id=".$theid)) || !($row = $sql->db_Fetch())) { - echo "Couldn't find user ID: {$theid}, {$sub_action}, {$edid[0]}
"; // Debug code - shouldn't be executed + $emessage->add("Couldn't find user ID: {$theid}, {$sub_action}, {$edid[0]}", E_MESSAGE_DEBUG); // Debug code - shouldn't be executed } - -/* Code would never be executed - $a_perms not set at this point - if ($a_perms == "0") - { - $text = "
$ad_name ".ADMSLAN_3." -

- ".ADMSLAN_4."
"; - $ns->tablerender(LAN_ERROR, $text); - require_once("footer.php"); - exit; - } */ } @@ -99,18 +103,21 @@ if (isset($_POST['del_admin']) && count($_POST['del_admin'])) $row = $sql->db_Fetch(); if ($row['user_id'] == 1) - { // CAn't delete main admin - $text = "
".$row['user_name']." ".ADMSLAN_6." + { // Can't delete main admin + $text = $row['user_name']." ".ADMSLAN_6."

- ".ADMSLAN_4.""; - $ns->tablerender(ADMSLAN_5, $text); + ".ADMSLAN_4.""; + + $emessage->add($text, E_MESSAGE_ERROR); + $ns->tablerender(LAN_ERROR, $emessage->render()); + require_once("footer.php"); exit; } - admin_update($sql -> db_Update("user", "user_admin=0, user_perms='' WHERE user_id= ".$aID), 'update', ADMSLAN_61, LAN_DELETED_FAILED); + admin_update($sql -> db_Update("user", "user_admin=0, user_perms='' WHERE user_id= ".$aID), 'update', ADMSLAN_61, LAN_DELETED_FAILED, false); $logMsg = str_replace(array('--ID--', '--NAME--'),array($aID, $row['user_name']),ADMSLAN_73); - $admin_log->log_event('ADMIN_02',$logMsg,E_LOG_INFORMATIVE,''); + $admin_log->log_event('ADMIN_02',$logMsg,E_LOG_INFORMATIVE,''); } @@ -124,179 +131,212 @@ else } - function show_admins() { - global $sql, $tp, $ns, $pref, $imode; + global $sql, $emessage, $e107, $frm; + $sql->db_Select("user", "*", "user_admin='1'"); - $text = "
+ $text = "
-
- - - - - - - - "; +
+ ".ADMSLAN_13." +
ID".ADMSLAN_56."".ADMSLAN_18."".LAN_OPTIONS."
+ + + + + + + + + + + + + + + + + "; while ($row = $sql->db_Fetch()) { - $text .= " - - - - - + + + + + ".$frm->submit_image("edit_admin[{$row['user_id']}]", 'edit', 'edit', LAN_EDIT)." + ".$frm->submit_image("del_admin[{$row['user_id']}]", 'del', 'delete', $e107->tp->toJS(ADMSLAN_59."? [".$row['user_name']."]"))." - "; + "; + } + + $text .= " + + + "; } - $text .= "
ID".ADMSLAN_56."".ADMSLAN_18."".LAN_OPTIONS."
".$row['user_id']."".$row['user_name'].""; - - $permtxt = ""; - $text .= renderperms($row['user_perms'],$row['user_id'],"words"); - $text .= ""; + //$permtxt = ""; + $text .= " +
".$row['user_id']."".$row['user_name']." + ".renderperms($row['user_perms'],$row['user_id'],"words")." + + "; if($row['user_id'] != "1") { $text .= " - - toJS(ADMSLAN_59."? [".$row['user_name']."]")."') \" title='".ADMSLAN_59."' style='border:0px' />"; - } - $text .= " 
\n
\n
"; - - $ns->tablerender(ADMSLAN_13, $text); + $text .= " + + + ".$frm->hidden('del_administrator_confirm','1')." + + + "; + $e107->ns->tablerender(ADMSLAN_13, $emessage->render().$text); } - - - function edit_administrator($row) { - global $sql,$tp,$ns,$pref; + global $sql, $e107, $pref, $frm; $lanlist = explode(",",e_LANLIST); $a_id = $row['user_id']; $ad_name = $row['user_name']; $a_perms = $row['user_perms']; - $text = "
-
- - - - - -
".ADMSLAN_16.": - "; + $text = " + +
+ ".ADMSLAN_52." + + + + + + + + + + + + + - "; - - $text .=" - - - - "; + $text .= " +
+ ".$frm->admin_button('check_all', 'jstarget:perms', 'action', LAN_CHECKALL)." + ".$frm->admin_button('uncheck_all', 'jstarget:perms', 'action', LAN_UNCHECKALL)." - $text .= "
- + + +
".ADMSLAN_16.": + ".$ad_name." + +
".ADMSLAN_18." - $text .= $ad_name; - $text .= ""; + "; + //XXX Lan - General + $text .= " +
+

".ADMSLAN_74."

+ "; + $text .= checkb("1", $a_perms, ADMSLAN_19); // Alter site preferences + $text .= checkb("2", $a_perms, ADMSLAN_20); // Alter Menus + $text .= checkb("3", $a_perms, ADMSLAN_21); // Modify administrator permissions + $text .= checkb("4", $a_perms, ADMSLAN_22); // Moderate users/bans etc + $text .= checkb("5", $a_perms, ADMSLAN_23); // create/edit custom pages/menus + $text .= checkb("Q", $a_perms, ADMSLAN_24); // Manage download categories + $text .= checkb("6", $a_perms, ADMSLAN_25); // Upload /manage files + $text .= checkb("Y", $a_perms, ADMSLAN_67); // file inspector + $text .= checkb("O", $a_perms, ADMSLAN_68); // notify + $text .= checkb("7", $a_perms, ADMSLAN_26); // Oversee news categories +// $text .= checkb("8", $a_perms, ADMSLAN_27); // Oversee link categories + $text .= checkb("C", $a_perms, ADMSLAN_64); // Clear Cache - Previously moderate chatbox + $text .= checkb("9", $a_perms, ADMSLAN_28); // Take site down for maintenance + $text .= checkb("W", $a_perms, ADMSLAN_65); // Configure mail settings and mailout + + $text .= checkb("D", $a_perms, ADMSLAN_29); // Manage banners +// $text .= checkb("E", $a_perms, ADMSLAN_30); // Configure news feed headlines - now plugin + $text .= checkb("F", $a_perms, ADMSLAN_31); // Configure emoticons + $text .= checkb("G", $a_perms, ADMSLAN_32); // Configure front page content + $text .= checkb("S", $a_perms, ADMSLAN_33); // Configure system logs (previously log/stats - now plugin) + $text .= checkb("T", $a_perms, ADMSLAN_34); // Configure meta tags + $text .= checkb("V", $a_perms, ADMSLAN_35); // Configure public file uploads + $text .= checkb("X", $a_perms, ADMSLAN_66); // Configure Search + $text .= checkb("A", $a_perms, ADMSLAN_36); // Configure Image Settings (Previously Moderate forums - NOW PLUGIN) + $text .= checkb("B", $a_perms, ADMSLAN_37); // Moderate comments + $text .= checkb("H", $a_perms, ADMSLAN_39); // Post news + $text .= checkb("I", $a_perms, ADMSLAN_40); // Post links +// $text .= checkb("J", $a_perms, ADMSLAN_41); // Post articles - NOW PLUGIN +// $text .= checkb("K", $a_perms, ADMSLAN_42); // Post reviews - NOW PLUGIN + $text .= checkb("L", $a_perms, ADMSLAN_43); // Configure URLs + $text .= checkb("R", $a_perms, ADMSLAN_44); // Post downloads + $text .= checkb("U", $a_perms, ADMSLAN_45); // Schedule Tasks + $text .= checkb("M", $a_perms, ADMSLAN_46); // Welcome message + $text .= checkb("N", $a_perms, ADMSLAN_47); // Moderate submitted news $text .= " -
".ADMSLAN_18.":
"; - - $text .= checkb("1", $a_perms).ADMSLAN_19."
"; // Alter site preferences - $text .= checkb("2", $a_perms).ADMSLAN_20."
"; // Alter Menus - $text .= checkb("3", $a_perms).ADMSLAN_21."
"; // Modify administrator permissions - $text .= checkb("4", $a_perms).ADMSLAN_22."
"; // Moderate users/bans etc - $text .= checkb("5", $a_perms).ADMSLAN_23."
"; // create/edit custom pages/menus - $text .= checkb("Q", $a_perms).ADMSLAN_24."
"; // Manage download categories - $text .= checkb("6", $a_perms).ADMSLAN_25."
"; // Upload /manage files - $text .= checkb("Y", $a_perms).ADMSLAN_67."
"; // file inspector - $text .= checkb("O", $a_perms).ADMSLAN_68."
"; // notify - $text .= checkb("7", $a_perms).ADMSLAN_26."
"; // Oversee news categories -// $text .= checkb("8", $a_perms).ADMSLAN_27."
"; // Oversee link categories - $text .= checkb("C", $a_perms).ADMSLAN_64."
"; // Clear Cache - Previously moderate chatbox - $text .= checkb("9", $a_perms).ADMSLAN_28."
"; // Take site down for maintenance - $text .= checkb("W", $a_perms).ADMSLAN_65."

"; // Configure mail settings and mailout - - $text .= checkb("D", $a_perms).ADMSLAN_29."
"; // Manage banners -// $text .= checkb("E", $a_perms).ADMSLAN_30."
"; // Configure news feed headlines - now plugin - $text .= checkb("F", $a_perms).ADMSLAN_31."
"; // Configure emoticons - $text .= checkb("G", $a_perms).ADMSLAN_32."
"; // Configure front page content - $text .= checkb("S", $a_perms).ADMSLAN_33."
"; // Configure system logs (previously log/stats - now plugin) - $text .= checkb("T", $a_perms).ADMSLAN_34."
"; // Configure meta tags - $text .= checkb("V", $a_perms).ADMSLAN_35."
"; // Configure public file uploads - $text .= checkb("X", $a_perms).ADMSLAN_66."
"; // Configure Search - $text .= checkb("A", $a_perms).ADMSLAN_36."
"; // Configure Image Settings (Previously Moderate forums - NOW PLUGIN) - $text .= checkb("B", $a_perms).ADMSLAN_37."
"; // Moderate comments - $text .= checkb("H", $a_perms).ADMSLAN_39."
"; // Post news - $text .= checkb("I", $a_perms).ADMSLAN_40."
"; // Post links -// $text .= checkb("J", $a_perms).ADMSLAN_41."
"; // Post articles - NOW PLUGIN -// $text .= checkb("K", $a_perms).ADMSLAN_42."
"; // Post reviews - NOW PLUGIN - $text .= checkb("L", $a_perms).ADMSLAN_43."
"; // Configure URLs - $text .= checkb("R", $a_perms).ADMSLAN_44."
"; // Post downloads - $text .= checkb("U", $a_perms).ADMSLAN_45."
"; // Schedule Tasks - $text .= checkb("M", $a_perms).ADMSLAN_46."
"; // Welcome message - $text .= checkb("N", $a_perms).ADMSLAN_47."

"; // Moderate submitted news - - $text .= "
".ADLAN_CL_7."

"; - $text .= checkb("Z", $a_perms).ADMSLAN_62."

"; // Plugin Manager + +
+

".ADLAN_CL_7."

"; + $text .= checkb("Z", $a_perms, ADMSLAN_62); // Plugin Manager $sql->db_Select("plugin", "*", "plugin_installflag='1'"); while ($row = $sql->db_Fetch()) { - $text .= checkb("P".$row['plugin_id'], $a_perms).LAN_PLUGIN." - ".$tp->toHTML($row['plugin_name'],FALSE,'RAWTEXT,defs')."
"; + $text .= checkb("P".$row['plugin_id'], $a_perms, LAN_PLUGIN." - ".$e107->tp->toHTML($row['plugin_name'] ,FALSE , 'RAWTEXT,defs')); } - + $text .= " +
"; // Language Rights.. -------------- if($pref['multilanguage']) { sort($lanlist); - $text .= "
".ADLAN_132."

\n"; - $text .= checkb($pref['sitelanguage'], $a_perms).$pref['sitelanguage']."
\n"; + $text .= " +
+

".ADLAN_132."

"; + + $text .= checkb($pref['sitelanguage'], $a_perms, $pref['sitelanguage']); foreach($lanlist as $langval) { - $langname = $langval; + //$langname = $langval; $langval = ($langval == $pref['sitelanguage']) ? "" : $langval; if ($langval) { - $text .= checkb($langval, $a_perms).$langval."
\n"; + $text .= checkb($langval, $a_perms, $langval); } } + $text .= " +
"; } // ------------------------- if (getperms('0')) { - $text .= "

".ADMSLAN_58."

"; - $text .= checkb("0", $a_perms).ADMSLAN_58."
"; + $text .= " +
+

".ADMSLAN_58."

"; + $text .= checkb("0", $a_perms, ADMSLAN_58); + $text .= " +
"; } - $text .= "

- ".ADMSLAN_49." - - ".ADMSLAN_51."
-
-
"; + +
+
+ + ".$frm->admin_button('update_admin', ADMSLAN_52, 'update')." + ".$frm->admin_button('go_back', ADMSLAN_70)." +
+
+ + "; - $text .= " - "; - - $text .= "
- -
"; - - $text .= "

".ADMSLAN_70."
"; - $ns->tablerender(ADMSLAN_52, $text); + $e107->ns->tablerender(ADMSLAN_52, $text); } - - - require_once("footer.php"); @@ -304,23 +344,24 @@ require_once("footer.php"); -function checkb($arg, $perms) +function checkb($arg, $perms, $label='') { - if (getperms($arg, $perms)) + global $frm; + $par = "
"; + $par .= $frm->checkbox('perms[]', $arg, getperms($arg, $perms)); + if ($label) { - $par = "\n"; - } - else - { - $par = "\n"; + $par .= $frm->label($label,'perms[]', $arg); } + $par .= "
"; + return $par; } -function renderperms($perm,$id) +function renderperms($perm, $id) { - global $pref,$sql,$pt; + global $pref, $pt, $e107; if($perm == "0") { return ADMSLAN_58; @@ -363,12 +404,12 @@ function renderperms($perm,$id) $pt["M"] = ADMSLAN_46; $pt["N"] = ADMSLAN_47; $pt["Z"] = ADMSLAN_62; - + $sql2->db_Select("plugin", "*", "plugin_installflag='1'"); while ($row2 = $sql2->db_Fetch()) { - $pt[("P".$row2['plugin_id'])] = LAN_PLUGIN." - ".$row2['plugin_name']; + $pt[("P".$row2['plugin_id'])] = LAN_PLUGIN." - ".$e107->tp->toHTML($row2['plugin_name'], FALSE, 'RAWTEXT,defs'); } } @@ -393,14 +434,33 @@ function renderperms($perm,$id) $ret = implode(" ",$permtxt); if($pref['multilanguage']) { - $ret .= ", ". $langperm; + $ret .= $langperm; } - $text = "
{$ret}
- "; + $text = " +
{$ret}
+
+ "; + return $text; - - } -?> +/** + * Handle page DOM within the page header + * + * @return string JS source + */ +function headerjs() +{ + require_once(e_HANDLER.'js_helper.php'); + $ret = " + + + "; + + return $ret; +} +?> \ No newline at end of file diff --git a/e107_files/e_url/core/user/main.php b/e107_files/e_url/core/user/main.php index 88b1e43c3..3958f550d 100644 --- a/e107_files/e_url/core/user/main.php +++ b/e107_files/e_url/core/user/main.php @@ -2,7 +2,7 @@ function url_user_main($parms) { - switch($parms['func']) + switch(varsettrue($parms['func'], 'profile')) { case 'profile': return e_HTTP.'user.php?id.'.$parms['id']; diff --git a/e107_handlers/message_handler.php b/e107_handlers/message_handler.php index e49118618..67b7b77ee 100644 --- a/e107_handlers/message_handler.php +++ b/e107_handlers/message_handler.php @@ -9,8 +9,8 @@ * Message Handler * * $Source: /cvs_backup/e107_0.8/e107_handlers/message_handler.php,v $ - * $Revision: 1.8 $ - * $Date: 2008-12-20 12:30:18 $ + * $Revision: 1.9 $ + * $Date: 2008-12-20 15:23:48 $ * $Author: secretr $ * */ @@ -24,6 +24,7 @@ define('E_MESSAGE_INFO', 'info'); define('E_MESSAGE_SUCCESS', 'success'); define('E_MESSAGE_WARNING', 'warning'); define('E_MESSAGE_ERROR', 'error'); +define('E_MESSAGE_DEBUG', 'debug'); //FIXME - language file! new? diff --git a/e107_languages/English/admin/lan_admin.php b/e107_languages/English/admin/lan_admin.php index c0e0ce866..324dd48ca 100644 --- a/e107_languages/English/admin/lan_admin.php +++ b/e107_languages/English/admin/lan_admin.php @@ -1,7 +1,7 @@ diff --git a/e107_languages/English/admin/lan_administrator.php b/e107_languages/English/admin/lan_administrator.php index 88ec587da..c4aac2298 100644 --- a/e107_languages/English/admin/lan_administrator.php +++ b/e107_languages/English/admin/lan_administrator.php @@ -9,16 +9,16 @@ * Admin Language File * * $Source: /cvs_backup/e107_0.8/e107_languages/English/admin/lan_administrator.php,v $ - * $Revision: 1.5 $ - * $Date: 2008-12-02 00:32:30 $ + * $Revision: 1.6 $ + * $Date: 2008-12-20 15:23:48 $ * $Author: secretr $ */ -define("ADMSLAN_0", "New user/admin entry created for"); -define("ADMSLAN_1", "now has admin status."); -define("ADMSLAN_2", "updated in database."); +//define("ADMSLAN_0", "New user/admin entry created for"); - no references found +//define("ADMSLAN_1", "now has admin status."); - no references found + define("ADMSLAN_3", "is the main site administrator and cannot be edited."); define("ADMSLAN_4", "Continue"); -define("ADMSLAN_5", "Error!"); +//define("ADMSLAN_5", "Error!"); - global admin LAN_ERROR define("ADMSLAN_6", "is the main site administrator and cannot be deleted."); define("ADMSLAN_13", "Existing Administrators"); @@ -57,8 +57,8 @@ define("ADMSLAN_45", "Schedule Tasks"); define("ADMSLAN_46", "Welcome message"); define("ADMSLAN_47", "Moderate submitted news"); -define("ADMSLAN_49", "Check All"); -define("ADMSLAN_51", "Uncheck All"); +//define("ADMSLAN_49", "Check All"); - global admin lan +//define("ADMSLAN_51", "Uncheck All"); - global admin lan define("ADMSLAN_52", "Update administrator"); define("ADMSLAN_53", "Add administrator"); define("ADMSLAN_54", "Site Administrators"); @@ -81,12 +81,15 @@ define("ADMSLAN_67", "Scan with file inspector"); define("ADMSLAN_68", "Configure email notification"); define("ADMSLAN_69", "is already an administrator and must be edited."); +// 0.8 define("ADMSLAN_70", "Return to Administrator Listing"); -define("ADMSLAN_71", "Click here to display privileges"); +define("ADMSLAN_71", "Click here to display privileges"); define('ADMSLAN_72', 'Admin ID: --ID-- name: --NAME-- new permissions: '); define('ADMSLAN_73', 'Admin ID: --ID-- name: --NAME--'); -define('ADMSLAN_74', ''); + +define('ADMSLAN_74', 'General'); define('ADMSLAN_75', ''); +define("ADMSLAN_2", "Site Administrator %s updated in database."); ?> \ No newline at end of file diff --git a/e107_themes/_blank/admin_style.css b/e107_themes/_blank/admin_style.css index 36934acfe..d57fdeac2 100644 --- a/e107_themes/_blank/admin_style.css +++ b/e107_themes/_blank/admin_style.css @@ -85,13 +85,10 @@ ul,ol { list-style:none; } /******** Decorate JS */ /* Admin List Table */ -.adminlist-table {} /* fieldset */ .adminlist { width:100%; border:1px solid #ddd;} .adminlist th { padding: 5px; border-bottom:1px solid #ddd; border-right: 1px solid #ddd; font-weight: bold; white-space:nowrap; } .adminlist td { padding: 5px; border-bottom:1px solid #ddd; border-right: 1px solid #ddd; } -.adminlist td div.field-spacer { clear: both; margin-bottom: 3px; } /* multi-fields per row separator */ - .adminlist th.last, .adminlist td.last { border-right: 0px solid;} .adminlist tr.last td{ border-bottom: 0px solid;} @@ -137,7 +134,8 @@ label { cursor: pointer; } .adminform td { padding: 5px; text-align: left} -.adminform td div.field-spacer { clear: both; margin-bottom: 3px; } /* multi-fields per row separator */ +.adminform td div.field-spacer { margin-bottom: 3px; } /* multi-fields per row separator */ +.adminform td div.field-section { clear: both; margin-bottom: 10px; } /* multi-field sections per row - wrapper */ .adminform .select { width: 280px;} .adminform .input-text { width: 274px;} @@ -151,9 +149,10 @@ label { cursor: pointer; } /* form used for content edit */ .adminedit { width:100%; border:1px solid #ddd;} +.adminedit.options { } /* form used for content item options */ .adminedit td { padding: 5px; text-align: left} -.adminedit td div.field-spacer { clear: both; margin-bottom: 3px; } /* multi-fields per row separator */ - +.adminedit td div.field-spacer { clear: both; margin-bottom: 3px; } /* multi-fields per row - wrapper */ +.adminedit td div.field-section { clear: both; margin-bottom: 10px; } /* multi-field sections per row - wrapper */ .adminedit .select { width: 280px; } .adminedit .input-text { width: 274px;} .adminedit td.control textarea { width: 274px;} @@ -314,7 +313,7 @@ input.action.edit {} .element-loading-mask { background-repeat: no-repeat; background-position: 50% 50%; background-color: #f5f5f5; } /********** Misc */ -.e-pointer { cursor: pointer; } /* Pointer Hand - cursor: pointer; cursor: hand */ +.e-pointer { cursor: pointer; } /* Pointer Hand */ .expand-container { padding: 10px; } /* Block with expandable items */ .nextprev-bar { clear: both; padding: 5px; font-size: 14px; margin: 5px; border:1px solid #ddd; } /* Page NextPrev nabigation block */ .imgselector-container { clear: both; } /* ImageSelector.sc */ @@ -407,15 +406,30 @@ ul.plugin-navigation ul.plugin-navigation-sub a.link-active {font-weight: bold;} #core-banlist-transfer-export {} #core-banlist-transfer-import {} +/* banner.php */ +#core-banner-list {} +#core-banner-edit {} +#core-banner-menu {} /* cache.php */ #core-cache-settings {} /* General cache settings - Default front page */ +/* cpage */ +#core-cpage-list {} +#core-cpage-create {} +#core-cpage-create-general {} +#core-cpage-create-options {} +#core-cpage-options {} + /* emoticon.php */ #core-emoticon-activate {} /* Emote activation - Default front page */ #core-emoticon-packages {} /* Installed packs - Default front page */ #core-emoticon-configure {} /* Configure an individual emote pack */ +/* eurl.php */ +#core-eurl-core {} +#core-eurl-plugin {} + /* frontpage.php */ #core-frontpage-settings {} /* Display list of current settings - Default front page */ #core-frontpage-edit {} /* Add / Edit existing rule - form */ @@ -449,7 +463,6 @@ ul.plugin-navigation ul.plugin-navigation-sub a.link-active {font-weight: bold;} #dataform {} /* Form tag ID - Default front page - old core definition */ #core-meta-settings {} /* General meta settings - Default front page */ - /* prefs.php */ #core-prefs {} /* Main continer - contains all block lemenst from bewlow */ #core-prefs-main {} /* Settings section - Site Information */