1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-31 02:00:14 +02:00

Issue #5473 Changed Column options icon. Specified some admin-menu icons.

This commit is contained in:
camer0n
2025-04-26 09:20:23 -07:00
parent 3b76d41cc6
commit 3f9dc94d12
9 changed files with 41 additions and 39 deletions

View File

@@ -78,15 +78,15 @@ class news_admin extends e_admin_dispatcher
protected $adminMenu = array(
'main/list' => array('caption'=> LAN_LIST, 'icon'=>'fa-list'),
'main/create' => array('caption'=> NWSLAN_45, 'icon'=> 'fa-plus'), // Create/Edit News Item
// 'cat/list' => array('caption'=> NWSLAN_46, 'perm' => '7'), // Category List
'main/create' => array('caption'=> 'NWSLAN_45', 'icon'=> 'fa-plus'), // Create/Edit News Item
// 'cat/list' => array('caption'=> 'NWSLAN_46', 'perm' => '7'), // Category List
'other' => array('divider'=> true),
'cat/list' => array('caption'=> LAN_CATEGORIES, 'icon'=> 'folder'), // Create Category.
'cat/create' => array('caption'=> LAN_NEWS_63, 'icon'=> 'fas-folder-plus'), // Category List
'cat/list' => array('caption'=> 'LAN_CATEGORIES', 'icon'=> 'folder'), // Create Category.
'cat/create' => array('caption'=> 'LAN_NEWS_63', 'icon'=> 'fas-folder-plus'), // Category List
'other2' => array('divider'=> true),
'main/prefs' => array('caption'=> LAN_PREFS, 'icon'=>'fa-cog'), // Preferences
// 'main/submitted' => array('caption'=> LAN_NEWS_64, 'perm' => 'N'), // Submitted News
'sub/list' => array('caption'=> NWSLAN_47, 'icon'=>'fa-user-edit'), // Submitted News
'main/prefs' => array('caption'=> 'LAN_PREFS', 'icon'=>'fa-cog'), // Preferences
// 'main/submitted' => array('caption'=> 'LAN_NEWS_64', 'perm' => 'N'), // Submitted News
'sub/list' => array('caption'=> 'NWSLAN_47', 'icon'=>'fa-upload'), // Submitted News
// 'main/maint' => array('caption'=> LAN_NEWS_55, 'perm' => '0') // Maintenance
);
@@ -98,7 +98,7 @@ class news_admin extends e_admin_dispatcher
'cat/edit' => 'cat/list'
);
protected $menuTitle = ADLAN_0;
protected $menuTitle = 'ADLAN_0';
function init()
{