openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 9bd4d7c91d43b024d57a9425f85ca9ec44f1e320
parent b41365ccfe497baf10750fb984f3e27ba8798a36
Author: Jan Dankert <devnull@localhost>
Date:   Sat, 21 Jul 2012 02:17:43 +0200

Korrektur der Icons...

Diffstat:
Dthemes/default/images/icon_config_folder.png | 0
Athemes/default/images/icon_projectlist.png | 0
Athemes/default/images/icon_userlist.png | 0
Mthemes/default/templates/configuration/show.tpl.src.xml | 1-
Mutil/AdministrationTree.class.php | 10+++++-----
5 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/themes/default/images/icon_config_folder.png b/themes/default/images/icon_config_folder.png Binary files differ. diff --git a/themes/default/images/icon_projectlist.png b/themes/default/images/icon_projectlist.png Binary files differ. diff --git a/themes/default/images/icon_userlist.png b/themes/default/images/icon_userlist.png Binary files differ. diff --git a/themes/default/templates/configuration/show.tpl.src.xml b/themes/default/templates/configuration/show.tpl.src.xml @@ -1,6 +1,5 @@ <output xmlns="http://www.openrat.de/template" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openrat.de/template ../template.xsd"> - <header views="create"></header> <table> <row class="headline"> <cell class="help"> diff --git a/util/AdministrationTree.class.php b/util/AdministrationTree.class.php @@ -60,7 +60,7 @@ class AdministrationTree extends AbstractTree $treeElement->description = lang('GLOBAL_PROJECTS'); $treeElement->url = Html::url('projectlist','show',0,array(REQ_PARAM_TARGET=>'content')); $treeElement->action = 'projectlist'; - $treeElement->icon = 'project_list'; + $treeElement->icon = 'projectlist'; $treeElement->type = 'projects'; $treeElement->target = 'cms_main'; @@ -70,7 +70,7 @@ class AdministrationTree extends AbstractTree $treeElement = new TreeElement(); $treeElement->text = lang('USER_AND_GROUPS'); $treeElement->description = lang('USER_AND_GROUPS'); - $treeElement->icon = 'user_list'; + $treeElement->icon = 'userlist'; $treeElement->type = 'userandgroups'; $this->addTreeElement( $treeElement ); @@ -116,7 +116,7 @@ class AdministrationTree extends AbstractTree $treeElement->description = lang('GLOBAL_USER'); $treeElement->url = Html::url('user','listing',0,array(REQ_PARAM_TARGET=>'content')); $treeElement->action = 'userlist'; - $treeElement->icon = 'user_list'; + $treeElement->icon = 'userlist'; $treeElement->target = 'cms_main'; $treeElement->type = 'users'; @@ -127,7 +127,7 @@ class AdministrationTree extends AbstractTree $treeElement->description = lang('GLOBAL_GROUPS'); $treeElement->url = Html::url('group','listing',0,array(REQ_PARAM_TARGET=>'content')); $treeElement->action = 'grouplist'; - $treeElement->icon = 'user_list'; + $treeElement->icon = 'userlist'; $treeElement->target = 'cms_main'; $treeElement->type = 'groups'; @@ -274,7 +274,7 @@ class AdministrationTree extends AbstractTree $treeElement->internalId = -1; $treeElement->text = 'OpenRat'; - $treeElement->icon = 'config_folder'; + $treeElement->icon = 'configuration'; if ( !empty($conf_config['file_manager_url']) ) $treeElement->url = $conf_config['file_manager_url'];