mirror of
https://github.com/e107inc/e107.git
synced 2025-03-14 01:19:44 +01:00
Admin image optimization
This commit is contained in:
parent
412a58fd87
commit
a9eeb7372d
@ -271,6 +271,25 @@ if (!defined('E_16_SYSINFO')) {
|
||||
}
|
||||
|
||||
|
||||
if (!defined('E_16_FAILEDLOGIN')) {
|
||||
define('E_16_FAILEDLOGIN', "<img class='icon S16' src='".e_IMAGE."admin_images/failedlogin_16.png' alt='' />");
|
||||
}
|
||||
|
||||
|
||||
if (!defined('E_16_FACEBOOK')) {
|
||||
define('E_16_FACEBOOK', "<img class='icon S16' src='".e_IMAGE."admin_images/facebook_16.png' alt='' />");
|
||||
}
|
||||
|
||||
if (!defined('E_16_TWITTER')) {
|
||||
define('E_16_TWITTER', "<img class='icon S16' src='".e_IMAGE."admin_images/twitter_16.png' alt='' />");
|
||||
}
|
||||
|
||||
if (!defined('E_16_GITHUB')) {
|
||||
define('E_16_GITHUB', "<img class='icon S16' src='".e_IMAGE."admin_images/github_16.png' alt='' />");
|
||||
}
|
||||
|
||||
|
||||
|
||||
// Large Admin Main Link Images
|
||||
if (!defined('E_32_ADMIN')) {
|
||||
define('E_32_ADMIN', "<img class='icon S32' src='".e_IMAGE."admin_images/admins_32.png' alt='' />");
|
||||
@ -421,6 +440,8 @@ if (!defined('E_32_SYSINFO')) {
|
||||
define('E_32_SYSINFO', "<img class='icon S32' src='".e_IMAGE."admin_images/sysinfo_32.png' alt='' />");
|
||||
}
|
||||
|
||||
define("E_16_E107", "<img class='icon S16' src='".e_IMAGE."e107_icon_16.png' alt='' />");
|
||||
define("E_32_E107", "<img class='icon S32' src='".e_IMAGE."e107_icon_32.png' alt='' />");
|
||||
|
||||
//XXX Move to e_navigation ?
|
||||
|
||||
|
@ -938,12 +938,13 @@ class admin_shortcodes
|
||||
<div style='padding-bottom: 2px;'>".E_16_USER." ".ADLAN_110.": <a href='".e_ADMIN_ABS."users.php?filter=0'>".$members."</a></div>
|
||||
<div style='padding-bottom: 2px;'>".E_16_USER." {$unver}: <a href='".e_ADMIN_ABS."users.php?filter=unverified'>".$unverified."</a></div>
|
||||
<div style='padding-bottom: 2px;'>".E_16_BANLIST." ".ADLAN_112.": <a href='".e_ADMIN_ABS."users.php?filter=banned'>".$banned."</a></div>
|
||||
<div style='padding-bottom: 2px;'>".E_16_COMMENT." ".ADLAN_114.": <a href='".e_ADMIN_ABS."comment.php'>".$comments."</a></div>";
|
||||
<div style='padding-bottom: 2px;'>".E_16_COMMENT." ".ADLAN_114.": <a href='".e_ADMIN_ABS."comment.php'>".$comments."</a></div>\n\n";
|
||||
|
||||
if(vartrue($pref['e_status_list']))
|
||||
{
|
||||
foreach($pref['e_status_list'] as $val)
|
||||
{
|
||||
$text .= "\n\t\t\t\t\t";
|
||||
if (is_readable(e_PLUGIN.$val.'/e_status.php'))
|
||||
{
|
||||
include_once(e_PLUGIN.$val.'/e_status.php');
|
||||
@ -953,9 +954,9 @@ class admin_shortcodes
|
||||
|
||||
if($flo = $sql->db_Count('generic', '(*)', "WHERE gen_type='failed_login'"))
|
||||
{
|
||||
$text .= "<img src='".e_IMAGE_ABS."admin_images/failedlogin_16.png' alt='' class='icon S16' /> <a href='".e_ADMIN_ABS."fla.php'>".ADLAN_146.": $flo</a>";
|
||||
$text .= "\n\t\t\t\t\t<div style='padding-bottom: 2px;'>".E_16_FAILEDLOGIN." <a href='".e_ADMIN_ABS."fla.php'>".ADLAN_146.": $flo</a></div>";
|
||||
}
|
||||
$text .= "</div>";
|
||||
$text .= "\n\t\t\t\t\t</div>";
|
||||
|
||||
|
||||
return ($parm != 'norender') ? $ns -> tablerender(LAN_STATUS, $text, '', TRUE) : $text;
|
||||
@ -1541,9 +1542,60 @@ class admin_shortcodes
|
||||
$tmp[3]['perm'] = '';
|
||||
|
||||
|
||||
|
||||
$tmp[4]['text'] = ADLAN_46;
|
||||
$tmp[4]['description'] = ADLAN_151;
|
||||
$tmp[4]['link'] = e_ADMIN_ABS.'admin.php?logout';
|
||||
$tmp[4]['image'] = "<img src='".E_16_NAV_LGOT."' alt='".ADLAN_151."' class='icon S16' />";
|
||||
$tmp[4]['image_large'] = '';
|
||||
$tmp[4]['image_src'] = '';
|
||||
$tmp[4]['image_large_src'] = '';
|
||||
$tmp[4]['perm'] = '';
|
||||
$tmp[4]['link_class'] = 'divider';
|
||||
|
||||
|
||||
$tmp[5]['text'] = "e107 Website";
|
||||
$tmp[5]['description'] = '';
|
||||
$tmp[5]['link'] = 'http://e107.org';
|
||||
$tmp[5]['image'] = E_16_E107;
|
||||
$tmp[5]['image_large'] = '';
|
||||
$tmp[5]['image_src'] = '';
|
||||
$tmp[5]['image_large_src'] = '';
|
||||
$tmp[5]['perm'] = '';
|
||||
$tmp[5]['link_class'] = '';
|
||||
|
||||
|
||||
|
||||
|
||||
$tmp[6]['text'] = "e107 on Twitter";
|
||||
$tmp[6]['description'] = '';
|
||||
$tmp[6]['link'] = 'http://twitter.com/e107';
|
||||
$tmp[6]['image'] = E_16_TWITTER; // "<img src='".E_16_NAV_LGOT."' alt='".ADLAN_151."' class='icon S16' />";
|
||||
$tmp[6]['image_large'] = '';
|
||||
$tmp[6]['image_src'] = '';
|
||||
$tmp[6]['image_large_src'] = '';
|
||||
$tmp[6]['perm'] = '';
|
||||
$tmp[6]['link_class'] = '';
|
||||
|
||||
|
||||
$tmp[7]['text'] = "e107 on Facebook";
|
||||
$tmp[7]['description'] = '';
|
||||
$tmp[7]['link'] = 'https://www.facebook.com/e107CMS';
|
||||
$tmp[7]['image'] = E_16_FACEBOOK; // "<img src='".E_16_NAV_LGOT."' alt='".ADLAN_151."' class='icon S16' />";
|
||||
$tmp[7]['image_large'] = '';
|
||||
$tmp[7]['image_src'] = '';
|
||||
$tmp[7]['image_large_src'] = '';
|
||||
$tmp[7]['perm'] = '';
|
||||
$tmp[7]['link_class'] = '';
|
||||
|
||||
|
||||
$tmp[8]['text'] = "e107 on Github";
|
||||
$tmp[8]['description'] = '';
|
||||
$tmp[8]['link'] = 'https://github.com/e107inc';
|
||||
$tmp[8]['image'] = E_16_GITHUB; // "<img src='".E_16_NAV_LGOT."' alt='".ADLAN_151."' class='icon S16' />";
|
||||
$tmp[8]['image_large'] = '';
|
||||
$tmp[8]['image_src'] = '';
|
||||
$tmp[8]['image_large_src'] = '';
|
||||
$tmp[8]['perm'] = '';
|
||||
$tmp[8]['link_class'] = '';
|
||||
|
||||
$menu_vars['logout']['text'] = ""; // ADMINNAME;
|
||||
$menu_vars['logout']['link'] = '#';
|
||||
|
@ -1050,7 +1050,7 @@ class e_navigation
|
||||
$replace[7] = ' '.varset($e107_vars[$act]['link_class'], 'e-expandit');
|
||||
$replace[8] = ' '.varset($e107_vars[$act]['sub_class'], 'e-hideme e-expandme');
|
||||
$replace[4] = preg_replace($search, $replace, $START_SUB);
|
||||
$replace[4] .= e_admin_menu(false, $active_page, $e107_vars[$act]['sub'], $tmpl, true, (isset($e107_vars[$act]['sort']) ? $e107_vars[$act]['sort'] : $sortlist));
|
||||
$replace[4] .= $this->admin(false, $active_page, $e107_vars[$act]['sub'], $tmpl, true, (isset($e107_vars[$act]['sort']) ? $e107_vars[$act]['sort'] : $sortlist));
|
||||
$replace[4] .= $tmpl['end_sub'];
|
||||
}
|
||||
|
||||
@ -1077,8 +1077,9 @@ class e_navigation
|
||||
// Previously admin.php -> render_links();
|
||||
function renderAdminButton($link, $title, $description, $perms, $icon = FALSE, $mode = FALSE)
|
||||
{
|
||||
global $td,$tp;
|
||||
global $td;
|
||||
$tp = e107::getParser();
|
||||
$mes = e107::getMessage();
|
||||
|
||||
|
||||
|
||||
@ -1135,7 +1136,7 @@ class e_navigation
|
||||
break;
|
||||
|
||||
case 'div-icon-only':
|
||||
$text .= "<div class='core-mainpanel-block'><a class='core-mainpanel-link-icon e-tip' href='".$link."' title='{$description}'>".$icon."</a></div>";
|
||||
$text .= "<div class='core-mainpanel-block e-tip' title='{$description}'><a class='core-mainpanel-link-icon e-tip' href='".$link."' >".$icon."</a></div>";
|
||||
break;
|
||||
|
||||
default:
|
||||
@ -1146,10 +1147,10 @@ class e_navigation
|
||||
$td++;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
echo "no Perms";
|
||||
}
|
||||
else
|
||||
{
|
||||
// echo "no Perms";
|
||||
}
|
||||
|
||||
return $text;
|
||||
}
|
||||
|
BIN
e107_images/admin_images/facebook_16.png
Normal file
BIN
e107_images/admin_images/facebook_16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 854 B |
BIN
e107_images/admin_images/github_16.png
Normal file
BIN
e107_images/admin_images/github_16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 479 B |
BIN
e107_images/admin_images/twitter_16.png
Normal file
BIN
e107_images/admin_images/twitter_16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 822 B |
@ -72,6 +72,7 @@ a.brand:hover img {
|
||||
|
||||
.nav-collapse { margin-top:8px; }
|
||||
|
||||
.dropdown-menu i,
|
||||
.dropdown-menu img { padding: 0px 0px; margin-right: 10px; }
|
||||
|
||||
.dropdown-menu a {
|
||||
@ -357,3 +358,183 @@ img.S32:hover {}
|
||||
.button.active {
|
||||
background-color: #408140 \9;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* ****************************** ICONS ************************************* */
|
||||
|
||||
i.S16 {
|
||||
background: url(images/adminicons_16.png) no-repeat top left;
|
||||
display:inline-block;
|
||||
width:17px;
|
||||
height:16px;
|
||||
*margin-right: .3em;
|
||||
line-height: 14px;
|
||||
vertical-align: text-top;
|
||||
}
|
||||
i.e-add-16{ background-position: 0 0; width: 16px; height: 16px; }
|
||||
i.e-adminlogs-16{ background-position: -21px 0; width: 16px; height: 16px; }
|
||||
i.e-adminpass-16{ background-position: -42px 0; width: 16px; height: 16px; }
|
||||
i.e-admins-16{ background-position: -63px 0; width: 16px; height: 16px; }
|
||||
i.e-arrow-16{ background-position: -84px 0; width: 16px; height: 16px; }
|
||||
i.e-arrow_over-16{ background-position: -105px 0; width: 16px; height: 16px; }
|
||||
i.e-articles-16{ background-position: -126px 0; width: 16px; height: 16px; }
|
||||
i.e-banlist-16{ background-position: -147px 0; width: 16px; height: 16px; }
|
||||
i.e-banners-16{ background-position: -168px 0; width: 16px; height: 16px; }
|
||||
i.e-cache-16{ background-position: -189px 0; width: 16px; height: 16px; }
|
||||
i.e-cat_content-16{ background-position: -210px 0; width: 16px; height: 16px; }
|
||||
i.e-cat_files-16{ background-position: -231px 0; width: 16px; height: 16px; }
|
||||
i.e-cat_plugins-16{ background-position: -252px 0; width: 16px; height: 16px; }
|
||||
i.e-cat_settings-16{ background-position: -273px 0; width: 16px; height: 16px; }
|
||||
i.e-cat_tools-16{ background-position: -294px 0; width: 16px; height: 16px; }
|
||||
i.e-cat_users-16{ background-position: -315px 0; width: 16px; height: 16px; }
|
||||
i.e-chatbox-16{ background-position: -336px 0; width: 16px; height: 16px; }
|
||||
i.e-comments-16{ background-position: -357px 0; width: 16px; height: 16px; }
|
||||
i.e-configure-16{ background-position: -378px 0; width: 16px; height: 16px; }
|
||||
i.e-content-16{ background-position: -399px 0; width: 16px; height: 16px; }
|
||||
i.e-copy-16{ background-position: -420px 0; width: 16px; height: 16px; }
|
||||
i.e-credits-16{ background-position: -441px 0; width: 16px; height: 16px; }
|
||||
i.e-cron-16{ background-position: -462px 0; width: 16px; height: 16px; }
|
||||
i.e-custom-16{ background-position: -483px 0; width: 16px; height: 16px; }
|
||||
i.e-database-16{ background-position: -504px 0; width: 16px; height: 16px; }
|
||||
i.e-delete-16{ background-position: -525px 0; width: 16px; height: 16px; }
|
||||
i.e-docs-16{ background-position: -546px 0; width: 16px; height: 16px; }
|
||||
i.e-down-16{ background-position: -567px 0; width: 16px; height: 16px; }
|
||||
i.e-downloads-16{ background-position: -588px 0; width: 16px; height: 16px; }
|
||||
i.e-edit-16{ background-position: -609px 0; width: 16px; height: 16px; }
|
||||
i.e-emoticons-16{ background-position: -630px 0; width: 16px; height: 16px; }
|
||||
i.e-eurl-16{ background-position: -651px 0; width: 16px; height: 16px; }
|
||||
i.e-extended-16{ background-position: -672px 0; width: 16px; height: 16px; }
|
||||
i.e-failedlogin-16{ background-position: -693px 0; width: 16px; height: 16px; }
|
||||
i.e-false-16{ background-position: -714px 0; width: 16px; height: 16px; }
|
||||
i.e-fileinspector-16{ background-position: -735px 0; width: 16px; height: 16px; }
|
||||
i.e-filemanager-16{ background-position: -756px 0; width: 16px; height: 16px; }
|
||||
i.e-forums-16{ background-position: -777px 0; width: 16px; height: 16px; }
|
||||
i.e-frontpage-16{ background-position: -798px 0; width: 16px; height: 16px; }
|
||||
i.e-images-16{ background-position: -819px 0; width: 16px; height: 16px; }
|
||||
i.e-info-16{ background-position: -840px 0; width: 16px; height: 16px; }
|
||||
i.e-language-16{ background-position: -861px 0; width: 16px; height: 16px; }
|
||||
i.e-leave-16{ background-position: -882px 0; width: 16px; height: 16px; }
|
||||
i.e-links-16{ background-position: -903px 0; width: 16px; height: 16px; }
|
||||
i.e-lock-16{ background-position: -924px 0; width: 16px; height: 16px; }
|
||||
i.e-logout-16{ background-position: -945px 0; width: 16px; height: 16px; }
|
||||
i.e-mail-16{ background-position: -966px 0; width: 16px; height: 16px; }
|
||||
i.e-main-16{ background-position: -987px 0; width: 16px; height: 16px; }
|
||||
i.e-maintain-16{ background-position: -1008px 0; width: 16px; height: 16px; }
|
||||
i.e-manage-16{ background-position: -1029px 0; width: 16px; height: 16px; }
|
||||
i.e-menus-16{ background-position: -1050px 0; width: 16px; height: 16px; }
|
||||
i.e-meta-16{ background-position: -1071px 0; width: 16px; height: 16px; }
|
||||
i.e-move-16{ background-position: -1092px 0; width: 16px; height: 16px; }
|
||||
i.e-news-16{ background-position: -1113px 0; width: 16px; height: 16px; }
|
||||
i.e-newsfeeds-16{ background-position: -1134px 0; width: 16px; height: 16px; }
|
||||
i.e-notify-16{ background-position: -1155px 0; width: 16px; height: 16px; }
|
||||
i.e-phpinfo-16{ background-position: -1176px 0; width: 16px; height: 16px; }
|
||||
i.e-plugin_install-16{ background-position: -1197px 0; width: 16px; height: 16px; }
|
||||
i.e-plugin_uninstall-16{ background-position: -1218px 0; width: 16px; height: 16px; }
|
||||
i.e-plugins-16{ background-position: -1239px 0; width: 16px; height: 16px; }
|
||||
i.e-plugmanager-16{ background-position: -1260px 0; width: 16px; height: 16px; }
|
||||
i.e-prefs-16{ background-position: -1281px 0; width: 16px; height: 16px; }
|
||||
i.e-rename-16{ background-position: -1302px 0; width: 16px; height: 16px; }
|
||||
i.e-reviews-16{ background-position: -1323px 0; width: 16px; height: 16px; }
|
||||
i.e-search-16{ background-position: -1344px 0; width: 16px; height: 16px; }
|
||||
i.e-select_columns-16{ background-position: -1365px 0; width: 16px; height: 16px; }
|
||||
i.e-settings-16{ background-position: -1386px 0; width: 16px; height: 16px; }
|
||||
i.e-sort-16{ background-position: -1407px 0; width: 16px; height: 16px; }
|
||||
i.e-stats-16{ background-position: -1428px 0; width: 16px; height: 16px; }
|
||||
i.e-sub_forums-16{ background-position: -1449px 0; width: 16px; height: 16px; }
|
||||
i.e-sublink-16{ background-position: -1470px 0; width: 16px; height: 16px; }
|
||||
i.e-sysinfo-16{ background-position: -1491px 0; width: 16px; height: 16px; }
|
||||
i.e-themes-16{ background-position: -1512px 0; width: 16px; height: 16px; }
|
||||
i.e-true-16{ background-position: -1533px 0; width: 16px; height: 16px; }
|
||||
i.e-up-16{ background-position: -1554px 0; width: 16px; height: 16px; }
|
||||
i.e-uploads-16{ background-position: -1575px 0; width: 16px; height: 16px; }
|
||||
i.e-userclass-16{ background-position: -1596px 0; width: 16px; height: 16px; }
|
||||
i.e-users-16{ background-position: -1617px 0; width: 16px; height: 16px; }
|
||||
i.e-warning-16{ background-position: -1638px 0; width: 16px; height: 16px; }
|
||||
i.e-welcome-16{ background-position: -1659px 0; width: 16px; height: 16px; }
|
||||
|
||||
i.S32 {
|
||||
background: url(images/adminicons_32.png) no-repeat top left;
|
||||
display: inline-block;
|
||||
width:32px;
|
||||
height:32px;
|
||||
}
|
||||
|
||||
i.e-add-32{ background-position: 0 0; width: 32px; height: 32px; }
|
||||
i.e-adminlogs-32{ background-position: -37px 0; width: 32px; height: 32px; }
|
||||
i.e-adminpass-32{ background-position: -74px 0; width: 32px; height: 32px; }
|
||||
i.e-admins-32{ background-position: -111px 0; width: 32px; height: 32px; }
|
||||
i.e-arrow-32{ background-position: -148px 0; width: 32px; height: 32px; }
|
||||
i.e-arrow_over-32{ background-position: -185px 0; width: 32px; height: 32px; }
|
||||
i.e-articles-32{ background-position: -222px 0; width: 32px; height: 32px; }
|
||||
i.e-banlist-32{ background-position: -259px 0; width: 32px; height: 32px; }
|
||||
i.e-banners-32{ background-position: -296px 0; width: 32px; height: 32px; }
|
||||
i.e-cache-32{ background-position: -333px 0; width: 32px; height: 32px; }
|
||||
i.e-cat_content-32{ background-position: -370px 0; width: 32px; height: 32px; }
|
||||
i.e-cat_files-32{ background-position: -407px 0; width: 32px; height: 32px; }
|
||||
i.e-cat_plugins-32{ background-position: -444px 0; width: 32px; height: 32px; }
|
||||
i.e-cat_settings-32{ background-position: -481px 0; width: 32px; height: 32px; }
|
||||
i.e-cat_tools-32{ background-position: -518px 0; width: 32px; height: 32px; }
|
||||
i.e-cat_users-32{ background-position: -555px 0; width: 32px; height: 32px; }
|
||||
i.e-chatbox-32{ background-position: -592px 0; width: 32px; height: 32px; }
|
||||
i.e-comments-32{ background-position: -629px 0; width: 32px; height: 32px; }
|
||||
i.e-configure-32{ background-position: -666px 0; width: 32px; height: 32px; }
|
||||
i.e-content-32{ background-position: -703px 0; width: 32px; height: 32px; }
|
||||
i.e-copy-32{ background-position: -740px 0; width: 32px; height: 32px; }
|
||||
i.e-credits-32{ background-position: -777px 0; width: 32px; height: 32px; }
|
||||
i.e-cron-32{ background-position: -814px 0; width: 32px; height: 32px; }
|
||||
i.e-custom-32{ background-position: -851px 0; width: 32px; height: 32px; }
|
||||
i.e-database-32{ background-position: -888px 0; width: 32px; height: 32px; }
|
||||
i.e-delete-32{ background-position: -925px 0; width: 32px; height: 32px; }
|
||||
i.e-docs-32{ background-position: -962px 0; width: 32px; height: 32px; }
|
||||
i.e-down-32{ background-position: -999px 0; width: 32px; height: 32px; }
|
||||
i.e-downloads-32{ background-position: -1036px 0; width: 32px; height: 32px; }
|
||||
i.e-edit-32{ background-position: -1073px 0; width: 32px; height: 32px; }
|
||||
i.e-emoticons-32{ background-position: -1110px 0; width: 32px; height: 32px; }
|
||||
i.e-eurl-32{ background-position: -1147px 0; width: 32px; height: 32px; }
|
||||
i.e-execute-32{ background-position: -1184px 0; width: 32px; height: 32px; }
|
||||
i.e-extended-32{ background-position: -1221px 0; width: 32px; height: 32px; }
|
||||
i.e-false-32{ background-position: -1258px 0; width: 32px; height: 32px; }
|
||||
i.e-fileinspector-32{ background-position: -1295px 0; width: 32px; height: 32px; }
|
||||
i.e-filemanager-32{ background-position: -1332px 0; width: 32px; height: 32px; }
|
||||
i.e-forums-32{ background-position: -1369px 0; width: 32px; height: 32px; }
|
||||
i.e-frontpage-32{ background-position: -1406px 0; width: 32px; height: 32px; }
|
||||
i.e-images-32{ background-position: -1443px 0; width: 32px; height: 32px; }
|
||||
i.e-info-32{ background-position: -1480px 0; width: 32px; height: 32px; }
|
||||
i.e-language-32{ background-position: -1517px 0; width: 32px; height: 32px; }
|
||||
i.e-leave-32{ background-position: -1554px 0; width: 32px; height: 32px; }
|
||||
i.e-links-32{ background-position: -1591px 0; width: 32px; height: 32px; }
|
||||
i.e-logout-32{ background-position: -1628px 0; width: 32px; height: 32px; }
|
||||
i.e-mail-32{ background-position: -1665px 0; width: 32px; height: 32px; }
|
||||
i.e-main-32{ background-position: -1702px 0; width: 32px; height: 32px; }
|
||||
i.e-maintain-32{ background-position: -1739px 0; width: 32px; height: 32px; }
|
||||
i.e-manage-32{ background-position: -1776px 0; width: 32px; height: 32px; }
|
||||
i.e-menus-32{ background-position: -1813px 0; width: 32px; height: 32px; }
|
||||
i.e-meta-32{ background-position: -1850px 0; width: 32px; height: 32px; }
|
||||
i.e-move-32{ background-position: -1887px 0; width: 32px; height: 32px; }
|
||||
i.e-news-32{ background-position: -1924px 0; width: 32px; height: 32px; }
|
||||
i.e-newsfeeds-32{ background-position: -1961px 0; width: 32px; height: 32px; }
|
||||
i.e-notify-32{ background-position: 0 -37px; width: 32px; height: 32px; }
|
||||
i.e-phpinfo-32{ background-position: -37px -37px; width: 32px; height: 32px; }
|
||||
i.e-plugin_install-32{ background-position: -74px -37px; width: 32px; height: 32px; }
|
||||
i.e-plugin_uninstall-32{ background-position: -111px -37px; width: 32px; height: 32px; }
|
||||
i.e-plugins-32{ background-position: -148px -37px; width: 32px; height: 32px; }
|
||||
i.e-plugmanager-32{ background-position: -185px -37px; width: 32px; height: 32px; }
|
||||
i.e-prefs-32{ background-position: -222px -37px; width: 32px; height: 32px; }
|
||||
i.e-rename-32{ background-position: -259px -37px; width: 32px; height: 32px; }
|
||||
i.e-reviews-32{ background-position: -296px -37px; width: 32px; height: 32px; }
|
||||
i.e-search-32{ background-position: -333px -37px; width: 32px; height: 32px; }
|
||||
i.e-select_columns-32{ background-position: -370px -37px; width: 32px; height: 32px; }
|
||||
i.e-settings-32{ background-position: -407px -37px; width: 32px; height: 32px; }
|
||||
i.e-sort-32{ background-position: -444px -37px; width: 32px; height: 32px; }
|
||||
i.e-stats-32{ background-position: -481px -37px; width: 32px; height: 32px; }
|
||||
i.e-sysinfo-32{ background-position: -518px -37px; width: 32px; height: 32px; }
|
||||
i.e-themes-32{ background-position: -555px -37px; width: 32px; height: 32px; }
|
||||
i.e-true-32{ background-position: -592px -37px; width: 32px; height: 32px; }
|
||||
i.e-up-32{ background-position: -629px -37px; width: 32px; height: 32px; }
|
||||
i.e-uploads-32{ background-position: -666px -37px; width: 32px; height: 32px; }
|
||||
i.e-userclass-32{ background-position: -703px -37px; width: 32px; height: 32px; }
|
||||
i.e-users-32{ background-position: -740px -37px; width: 32px; height: 32px; }
|
||||
i.e-warning-32{ background-position: -777px -37px; width: 32px; height: 32px; }
|
||||
i.e-welcome-32{ background-position: -814px -37px; width: 32px; height: 32px; }
|
||||
|
||||
|
@ -135,7 +135,7 @@ $E_ADMIN_NAVIGATION['start_other_sub'] = '
|
||||
';
|
||||
|
||||
$E_ADMIN_NAVIGATION['button_sub'] = '
|
||||
<li role="menuitem">
|
||||
<li role="menuitem" class="{LINK_CLASS}">
|
||||
<a href="{LINK_URL}">{LINK_IMAGE}{LINK_TEXT}</a>
|
||||
</li>
|
||||
';
|
||||
|
@ -40,16 +40,431 @@ else
|
||||
}
|
||||
|
||||
|
||||
$register_sc[]='FS_ADMIN_ALT_NAV';
|
||||
// $register_sc[]='FS_ADMIN_ALT_NAV';
|
||||
$no_core_css = TRUE;
|
||||
|
||||
|
||||
if (!defined('E_32_ADMIN')) {
|
||||
define('E_32_ADMIN', "<i class='S32 e-admins-32'></i>");
|
||||
}
|
||||
if (!defined('E_32_ADPASS')) {
|
||||
define('E_32_ADPASS', "<i class='S32 e-adminpass-32'></i>");
|
||||
}
|
||||
if (!defined('E_32_BANLIST')) {
|
||||
define('E_32_BANLIST', "<i class='S32 e-banlist-32'></i>");
|
||||
}
|
||||
|
||||
|
||||
if (!defined('E_32_CACHE')) {
|
||||
define('E_32_CACHE', "<i class='S32 e-cache-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_CREDITS')) {
|
||||
define('E_32_CREDITS', "<i class='S32 e-e107_icon-32.png'></i>");
|
||||
}
|
||||
if (!defined('E_32_CRON')) {
|
||||
define('E_32_CRON', "<i class='S32 e-cron-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_CUST')) {
|
||||
define('E_32_CUST', "<i class='S32 e-custom-32'></i> ");
|
||||
}
|
||||
//if (!defined('E_32_CUSTOMFIELD')) {
|
||||
// define('E_32_CUSTOMFIELD', "<img class='icon S16' src='".e_IMAGE."admin_images/custom_field_32.png' alt='' />");
|
||||
//}
|
||||
if (!defined('E_32_DATAB')) {
|
||||
define('E_32_DATAB', "<i class='S32 e-database-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_DOCS')) {
|
||||
define('E_32_DOCS', "<i class='S32 e-docs-32'></i> ");
|
||||
}
|
||||
|
||||
if (!defined('E_32_EMOTE')) {
|
||||
define('E_32_EMOTE', "<i class='S32 e-emoticons-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_FILE')) {
|
||||
define('E_32_FILE', "<i class='S32 e-filemanager-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_FORUM')) {
|
||||
define('E_32_FORUM', "<i class='S32 e-forums-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_FRONT')) {
|
||||
define('E_32_FRONT', "<i class='S32 e-frontpage-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_IMAGES')) {
|
||||
define('E_32_IMAGES', "<i class='S32 e-images-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_INSPECT')) {
|
||||
define('E_32_INSPECT', "<i class='S32 e-fileinspector-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_LINKS')) {
|
||||
define('E_32_LINKS', "<i class='S32 e-links-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_WELCOME')) {
|
||||
define('E_32_WELCOME', "<i class='S32 e-welcome-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_MAIL')) {
|
||||
define('E_32_MAIL', "<i class='S32 e-mail-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_MAINTAIN')) {
|
||||
define('E_32_MAINTAIN', "<i class='S32 e-maintain-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_MENUS')) {
|
||||
define('E_32_MENUS', "<i class='S32 e-menus-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_META')) {
|
||||
define('E_32_META', "<i class='S32 e-meta-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_NEWS')) {
|
||||
define('E_32_NEWS', "<i class='S32 e-news-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_NEWSFEED')) {
|
||||
define('E_32_NEWSFEED', "<i class='S32 e-newsfeeds-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_NOTIFY')) {
|
||||
define('E_32_NOTIFY', "<i class='S32 e-notify-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_PHP')) {
|
||||
define('E_32_PHP', "<i class='S32 e-phpinfo-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_POLLS')) {
|
||||
define('E_32_POLLS', "<i class='S32 e-polls-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_PREFS')) {
|
||||
define('E_32_PREFS', "<i class='S32 e-prefs-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_SEARCH')) {
|
||||
define('E_32_SEARCH', "<i class='S32 e-search-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_UPLOADS')) {
|
||||
define('E_32_UPLOADS', "<i class='S32 e-uploads-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_EURL')) {
|
||||
define('E_32_EURL', "<i class='S32 e-eurl-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_USER')) {
|
||||
define('E_32_USER', "<i class='S32 e-users-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_USER_EXTENDED')) {
|
||||
define('E_32_USER_EXTENDED', "<i class='S32 e-extended-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_USERCLASS')) {
|
||||
define('E_32_USERCLASS', "<i class='S32 e-userclass-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_LANGUAGE')) {
|
||||
define('E_32_LANGUAGE', "<i class='S32 e-language-32'></i> ");
|
||||
}
|
||||
|
||||
// Large Admin Other Link Images
|
||||
if (!defined('E_32_PLUGIN')) {
|
||||
define('E_32_PLUGIN', "<i class='S32 e-plugins-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_PLUGMANAGER')) {
|
||||
define('E_32_PLUGMANAGER', "<i class='S32 e-plugmanager-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_DOCS')) {
|
||||
define('E_32_DOCS', "<i class='S32 e-docs-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_MAIN')) {
|
||||
define('E_32_MAIN', "<i class='S32 e-main-32'></i> ");
|
||||
}
|
||||
|
||||
if (!defined('E_32_THEMEMANAGER')) {
|
||||
define('E_32_THEMEMANAGER', "<i class='S32 e-themes-32'></i> ");
|
||||
}
|
||||
|
||||
// Large Admin Other Images
|
||||
if (!defined('E_32_COMMENT')) {
|
||||
define('E_32_COMMENT', "<i class='S32 e-comments-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_ADMINLOG')) {
|
||||
define('E_32_ADMINLOG', "<i class='S32 e-adminlogs-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_LOGOUT')) {
|
||||
define('E_32_LOGOUT', "<i class='S32 e-logout-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_MANAGE')) {
|
||||
define('E_32_MANAGE', "<i class='S32 e-manage-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_CREATE')) {
|
||||
define('E_32_CREATE', "<i class='S32 e-add-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_SETTINGS')) {
|
||||
define('E_32_SETTINGS', "<i class='S32 e-settings-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_SYSINFO')) {
|
||||
define('E_32_SYSINFO', "<i class='S32 e-sysinfo-32'></i> ");
|
||||
}
|
||||
|
||||
|
||||
|
||||
// Small Category Images
|
||||
if (!defined('E_16_CAT_SETT')) {
|
||||
define('E_16_CAT_SETT', e_IMAGE.'admin_images/cat_settings_16.png');
|
||||
}
|
||||
if (!defined('E_16_CAT_USER')) {
|
||||
define('E_16_CAT_USER', e_IMAGE.'admin_images/cat_users_16.png');
|
||||
}
|
||||
if (!defined('E_16_CAT_CONT')) {
|
||||
define('E_16_CAT_CONT', e_IMAGE.'admin_images/cat_content_16.png');
|
||||
}
|
||||
if (!defined('E_16_CAT_FILE')) {
|
||||
define('E_16_CAT_FILE', e_IMAGE.'admin_images/cat_files_16.png');
|
||||
}
|
||||
if (!defined('E_16_CAT_TOOL')) {
|
||||
define('E_16_CAT_TOOL', e_IMAGE.'admin_images/cat_tools_16.png');
|
||||
}
|
||||
if (!defined('E_16_CAT_PLUG')) {
|
||||
define('E_16_CAT_PLUG', e_IMAGE.'admin_images/cat_plugins_16.png');
|
||||
}
|
||||
if (!defined('E_16_CAT_MANAGE')) {
|
||||
define('E_16_CAT_MANAGE', e_IMAGE.'admin_images/manage_16.png');
|
||||
}
|
||||
if (!defined('E_16_CAT_MISC')) {
|
||||
define('E_16_CAT_MISC', e_IMAGE.'admin_images/settings_16.png');
|
||||
}
|
||||
if (!defined('E_16_CAT_ABOUT')) {
|
||||
define('E_16_CAT_ABOUT', e_IMAGE.'admin_images/info_16.png');
|
||||
}
|
||||
|
||||
// Large Category Images
|
||||
if (!defined('E_32_CAT_SETT')) {
|
||||
define('E_32_CAT_SETT', "<i class='S32 e-cat_settings-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_CAT_USER')) {
|
||||
define('E_32_CAT_USER', "<i class='S32 e-cat_users-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_CAT_CONT')) {
|
||||
define('E_32_CAT_CONT', "<i class='S32 e-cat_content-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_CAT_FILE')) {
|
||||
define('E_32_CAT_FILE', "<i class='S32 e-cat_files-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_CAT_TOOL')) {
|
||||
define('E_32_CAT_TOOL', "<i class='S32 e-cat_tools-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_CAT_PLUG')) {
|
||||
define('E_32_CAT_PLUG', "<i class='S32 e-cat_plugins-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_CAT_MANAGE')) {
|
||||
define('E_32_CAT_MANAGE', "<i class='S32 e-manage-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_CAT_MISC')) {
|
||||
define('E_32_CAT_MISC', "<i class='S32 e-settings-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_CAT_ABOUT')) {
|
||||
define('E_32_CAT_ABOUT', "<i class='S32 e-info-32'></i> ");
|
||||
}
|
||||
|
||||
// Small Nav Images
|
||||
if (!defined('E_16_NAV_MAIN')) {
|
||||
define('E_16_NAV_MAIN', e_IMAGE.'admin_images/main_16.png');
|
||||
}
|
||||
// if (!defined('E_16_NAV_DOCS')) {
|
||||
// define('E_16_NAV_DOCS', e_IMAGE.'admin_images/docs_16.png');
|
||||
// }
|
||||
|
||||
if (!defined('E_16_NAV_LEAV')) {
|
||||
define('E_16_NAV_LEAV', e_IMAGE.'admin_images/leave_16.png');
|
||||
}
|
||||
if (!defined('E_16_NAV_LGOT')) {
|
||||
define('E_16_NAV_LGOT', e_IMAGE.'admin_images/logout_16.png');
|
||||
}
|
||||
if (!defined('E_16_NAV_ARROW')) {
|
||||
define('E_16_NAV_ARROW', e_IMAGE.'admin_images/arrow_16.png');
|
||||
}
|
||||
if (!defined('E_16_NAV_ARROW_OVER')) {
|
||||
define('E_16_NAV_ARROW_OVER', e_IMAGE.'admin_images/arrow_over_16.png');
|
||||
}
|
||||
|
||||
// Large Nav Images
|
||||
if (!defined('E_32_NAV_MAIN')) {
|
||||
define('E_32_NAV_MAIN', "<i class='S32 e-main-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_NAV_DOCS')) {
|
||||
define('E_32_NAV_DOCS', "<i class='S32 e-docs-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_NAV_LEAV')) {
|
||||
define('E_32_NAV_LEAV', "<i class='S32 e-leave-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_NAV_LGOT')) {
|
||||
define('E_32_NAV_LGOT', "<i class='S32 e-logout-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_NAV_ARROW')) {
|
||||
define('E_32_NAV_ARROW', "<i class='S32 e-arrow-32'></i> ");
|
||||
}
|
||||
if (!defined('E_32_NAV_ARROW_OVER')) {
|
||||
define('E_32_NAV_ARROW_OVER', "<i class='S32 e-arrow_over-32'></i> ");
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Small Admin Main Link Images
|
||||
if (!defined('E_16_ADMIN')) {
|
||||
define('E_16_ADMIN', "<i class='S16 e-admins-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_ADPASS')) {
|
||||
define('E_16_ADPASS', "<i class='S16 e-adminpass-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_BANLIST')) {
|
||||
define('E_16_BANLIST', "<i class='S16 e-banlist-16'></i>");
|
||||
}
|
||||
|
||||
if (!defined('E_16_CACHE')) {
|
||||
define('E_16_CACHE', "<i class='S16 e-cache-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_COMMENT')) {
|
||||
define('E_16_COMMENT', "<i class='S16 e-comments-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_CREDITS')) {
|
||||
define('E_16_CREDITS', "<i class='S16 e-e107_icon-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_CRON')) {
|
||||
define('E_16_CRON', "<i class='S16 e-cron-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_CUST')) {
|
||||
define('E_16_CUST', "<i class='S16 e-custom-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_CUSTOMFIELD')) {
|
||||
define('E_16_CUSTOMFIELD', "<i class='S16 e-custom_field-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_DATAB')) {
|
||||
define('E_16_DATAB', "<i class='S16 e-database-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_DOCS')) {
|
||||
define('E_16_DOCS', "<i class='S16 e-docs-16'></i>");
|
||||
}
|
||||
|
||||
if (!defined('E_16_EMOTE')) {
|
||||
define('E_16_EMOTE', "<i class='S16 e-emoticons-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_FILE')) {
|
||||
define('E_16_FILE', "<i class='S16 e-filemanager-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_FORUM')) {
|
||||
define('E_16_FORUM', "<i class='S16 e-forums-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_FRONT')) {
|
||||
define('E_16_FRONT', "<i class='S16 e-frontpage-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_IMAGES')) {
|
||||
define('E_16_IMAGES', "<i class='S16 e-images-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_INSPECT')) {
|
||||
define('E_16_INSPECT', "<i class='S16 e-fileinspector-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_LINKS')) {
|
||||
define('E_16_LINKS', "<i class='S16 e-links-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_WELCOME')) {
|
||||
define('E_16_WELCOME', "<i class='S16 e-welcome-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_MAIL')) {
|
||||
define('E_16_MAIL', "<i class='S16 e-mail-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_MAINTAIN')) {
|
||||
define('E_16_MAINTAIN', "<i class='S16 e-maintain-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_MENUS')) {
|
||||
define('E_16_MENUS', "<i class='icon S16 e-menus-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_META')) {
|
||||
define('E_16_META', "<i class='icon S16 e-meta-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_NEWS')) {
|
||||
define('E_16_NEWS', "<i class='icon S16 e-news-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_NEWSFEED')) {
|
||||
define('E_16_NEWSFEED', "<i class='S16 e-newsfeeds-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_NOTIFY')) {
|
||||
define('E_16_NOTIFY', "<i class='S16 e-notify-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_PHP')) {
|
||||
define('E_16_PHP', "<i class='S16 e-phpinfo-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_POLLS')) {
|
||||
define('E_16_POLLS', "<i class='S16 e-polls-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_PREFS')) {
|
||||
define('E_16_PREFS', "<i class='S16 e-prefs-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_SEARCH')) {
|
||||
define('E_16_SEARCH', "<i class='S16 e-search-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_UPLOADS')) {
|
||||
define('E_16_UPLOADS', "<i class='S16 e-uploads-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_EURL')) {
|
||||
define('E_16_EURL', "<i class='S16 e-eurl-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_USER')) {
|
||||
define('E_16_USER', "<i class='S16 e-users-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_USER_EXTENDED')) {
|
||||
define('E_16_USER_EXTENDED', "<i class='S16 e-extended-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_USERCLASS')) {
|
||||
define('E_16_USERCLASS', "<i class='S16 e-userclass-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_LANGUAGE')) {
|
||||
define('E_16_LANGUAGE', "<i class='S16 e-language-16'></i>");
|
||||
}
|
||||
|
||||
// Small Admin Other Link Images
|
||||
if (!defined('E_16_PLUGIN')) {
|
||||
define('E_16_PLUGIN', "<i class='S16 e-plugins-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_PLUGMANAGER')) {
|
||||
define('E_16_PLUGMANAGER', "<i class='S16 e-plugmanager-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_DOCS')) {
|
||||
define('E_16_DOCS', "<i class='S16 e-docs-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_THEMEMANAGER')) {
|
||||
define('E_16_THEMEMANAGER', "<i class='S16 e-themes-16'></i>");
|
||||
}
|
||||
|
||||
// Small Admin Other Images
|
||||
if (!defined('E_16_COMMENT')) {
|
||||
define('E_16_COMMENT', "<i class='S16 e-comments-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_ADMINLOG')) {
|
||||
define('E_16_ADMINLOG', "<i class='S16 e-adminlogs-16'></i>");
|
||||
}
|
||||
|
||||
if (!defined('E_16_MANAGE')) {
|
||||
define('E_16_MANAGE', "<i class='S16 e-manage-16'></i>");
|
||||
}
|
||||
|
||||
if (!defined('E_16_CREATE')) {
|
||||
define('E_16_CREATE', "<i class='S16 e-add-16'></i>");
|
||||
}
|
||||
|
||||
if (!defined('E_16_SETTINGS')) {
|
||||
define('E_16_SETTINGS', "<i class='S16 e-settings-16'></i>");
|
||||
}
|
||||
|
||||
if (!defined('E_16_SYSINFO')) {
|
||||
define('E_16_SYSINFO', "<i class='S16 e-sysinfo-16'></i>");
|
||||
}
|
||||
if (!defined('E_16_FAILEDLOGIN')) {
|
||||
define('E_16_FAILEDLOGIN', "<i class='S16 e-failedlogin-16'></i>");
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// define("ADMIN_TRUE_ICON", "<img class='icon action S32' src='".e_IMAGE_ABS."admin_images/true_32.png' alt='' />");
|
||||
// define("ADMIN_TRUE_ICON_PATH", e_IMAGE."admin_images/true_32.png");
|
||||
|
||||
// define("ADMIN_FALSE_ICON", "<img class='icon action S32' src='".e_IMAGE_ABS."admin_images/false_32.png' alt='' />");
|
||||
// define("ADMIN_FALSE_ICON_PATH", e_IMAGE."admin_images/false_32.png");
|
||||
|
||||
|
||||
define("ADMIN_EDIT_ICON", "<img class='icon action S32' src='".e_IMAGE_ABS."admin_images/edit_32.png' alt='' title='".LAN_EDIT."' />");
|
||||
define("ADMIN_EDIT_ICON_PATH", e_IMAGE."admin_images/edit_32.png");
|
||||
|
||||
|
BIN
e107_themes/bootstrap/images/adminicons_16.png
Normal file
BIN
e107_themes/bootstrap/images/adminicons_16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 91 KiB |
BIN
e107_themes/bootstrap/images/adminicons_32.png
Normal file
BIN
e107_themes/bootstrap/images/adminicons_32.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 228 KiB |
@ -13,7 +13,7 @@
|
||||
* $Date$
|
||||
* $Author$
|
||||
*/
|
||||
|
||||
/*
|
||||
define("ADMIN_TRUE_ICON", "<img class='icon action S16' src='".e_IMAGE_ABS."admin_images/true_16.png' alt='' />");
|
||||
define("ADMIN_TRUE_ICON_PATH", e_IMAGE_ABS."admin_images/true_16.png");
|
||||
|
||||
@ -65,5 +65,57 @@
|
||||
define("ADMIN_SORT_ICON", "<img class='icon action S16' src='".e_IMAGE_ABS."admin_images/sort_16.png' alt='' title='Sort' />"); //TODO LAN
|
||||
define("ADMIN_SORT_ICON_PATH", e_IMAGE."admin_images/sort_16.png");
|
||||
|
||||
*/
|
||||
|
||||
|
||||
define("ADMIN_TRUE_ICON", "<i class='S16 e-true-16'></i>");
|
||||
define("ADMIN_TRUE_ICON_PATH", e_IMAGE_ABS."admin_images/true_16.png");
|
||||
|
||||
define("ADMIN_FALSE_ICON", "<i class='S16 e-false-16'></i>");
|
||||
define("ADMIN_FALSE_ICON_PATH", e_IMAGE_ABS."admin_images/false_16.png");
|
||||
|
||||
define("ADMIN_EDIT_ICON", "<img class='icon action S16' src='".e_IMAGE_ABS."admin_images/edit_16.png' alt='' title='".LAN_EDIT."' />");
|
||||
define("ADMIN_EDIT_ICON_PATH", e_IMAGE_ABS."admin_images/edit_16.png");
|
||||
|
||||
define("ADMIN_DELETE_ICON", "<img class='icon action S16' src='".e_IMAGE_ABS."admin_images/delete_16.png' alt='' title='".LAN_DELETE."' />");
|
||||
define("ADMIN_DELETE_ICON_PATH", e_IMAGE_ABS."admin_images/delete_16.png");
|
||||
|
||||
define("ADMIN_UP_ICON", "<img class='icon action S16' src='".e_IMAGE_ABS."admin_images/up_16.png' alt='' title='".LAN_DELETE."' />");
|
||||
define("ADMIN_UP_ICON_PATH", e_IMAGE_ABS."admin_images/up_16.png");
|
||||
|
||||
define("ADMIN_DOWN_ICON", "<img class='icon action S16' src='".e_IMAGE_ABS."admin_images/down_16.png' alt='' title='".LAN_DELETE."' />");
|
||||
define("ADMIN_DOWN_ICON_PATH", e_IMAGE_ABS."admin_images/down_16.png");
|
||||
|
||||
define("ADMIN_WARNING_ICON", "<i class='S16 e-warning-16'></i>");
|
||||
define("ADMIN_WARNING_ICON_PATH", e_IMAGE_ABS."admin_images/warning_16.png");
|
||||
|
||||
define("ADMIN_INFO_ICON", "<i class='S16 e-info-16'></i>");
|
||||
define("ADMIN_INFO_ICON_PATH", e_IMAGE_ABS."admin_images/info_16.png");
|
||||
|
||||
define("ADMIN_CONFIGURE_ICON", "<i class='S16 e-configure-16'></i>");
|
||||
define("ADMIN_CONFIGURE_ICON_PATH", e_IMAGE_ABS."admin_images/configure_16.png");
|
||||
|
||||
define("ADMIN_ADD_ICON", "<i class='S16 e-add-16'></i>");
|
||||
define("ADMIN_ADD_ICON_PATH", e_IMAGE_ABS."admin_images/add_16.png");
|
||||
|
||||
define("ADMIN_VIEW_ICON", "<i class='S16 e-search-16'></i>");
|
||||
define("ADMIN_VIEW_ICON_PATH", e_IMAGE_ABS."admin_images/admin_images/search_16.png");
|
||||
|
||||
define("ADMIN_URL_ICON", "<i class='S16 e-forums-16'></i>");
|
||||
define("ADMIN_URL_ICON_PATH", e_IMAGE_ABS."admin_images/forums_16.png");
|
||||
|
||||
define("ADMIN_INSTALLPLUGIN_ICON", "<i class='S16 e-plugin_install-16'></i>");
|
||||
define("ADMIN_INSTALLPLUGIN_ICON_PATH", e_IMAGE_ABS."admin_images/plugin_install_16.png");
|
||||
|
||||
define("ADMIN_UNINSTALLPLUGIN_ICON", "<i class='S16 e-plugin_uninstall-16'></i>");
|
||||
define("ADMIN_UNINSTALLPLUGIN_ICON_PATH", e_IMAGE_ABS."admin_images/plugin_unstall_16.png");
|
||||
|
||||
define("ADMIN_UPGRADEPLUGIN_ICON", "<i class='S16 e-up-16'></i>");
|
||||
define("ADMIN_UPGRADEPLUGIN_ICON_PATH", e_IMAGE_ABS."admin_images/up_16.png");
|
||||
|
||||
define("ADMIN_EXECUTE_ICON", "<img class='icon action S16' src='".e_IMAGE_ABS."admin_images/execute_16.png' alt='' title='Run' />");//TODO LAN
|
||||
define("ADMIN_EXECUTE_ICON_PATH", e_IMAGE."admin_images/execute_16.png");
|
||||
|
||||
define("ADMIN_SORT_ICON", "<img class='icon action S16' src='".e_IMAGE_ABS."admin_images/sort_16.png' alt='' title='Sort' />"); //TODO LAN
|
||||
define("ADMIN_SORT_ICON_PATH", e_IMAGE."admin_images/sort_16.png");
|
||||
|
Loading…
x
Reference in New Issue
Block a user