Skip to content

Commit

Permalink
Remove icons from tabs beneath authorization
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
lippserd committed Nov 12, 2015
1 parent ad31f3f commit 3e5f801
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
3 changes: 0 additions & 3 deletions application/controllers/GroupController.php
Expand Up @@ -324,7 +324,6 @@ protected function createShowTabs($backendName, $groupName)
array(
'title' => sprintf($this->translate('Show group %s'), $groupName),
'label' => $this->translate('Group'),
'icon' => 'users',
'url' => Url::fromPath('group/show', array('backend' => $backendName, 'group' => $groupName))
)
);
Expand Down Expand Up @@ -355,7 +354,6 @@ protected function createListTabs()
array(
'title' => $this->translate('List users of authentication backends'),
'label' => $this->translate('Users'),
'icon' => 'user',
'url' => 'user/list'
)
);
Expand All @@ -364,7 +362,6 @@ protected function createListTabs()
array(
'title' => $this->translate('List groups of user group backends'),
'label' => $this->translate('User Groups'),
'icon' => 'users',
'url' => 'group/list'
)
);
Expand Down
2 changes: 0 additions & 2 deletions application/controllers/RoleController.php
Expand Up @@ -163,7 +163,6 @@ protected function createListTabs()
array(
'title' => $this->translate('List users of authentication backends'),
'label' => $this->translate('Users'),
'icon' => 'user',
'url' => 'user/list'
)
);
Expand All @@ -172,7 +171,6 @@ protected function createListTabs()
array(
'title' => $this->translate('List groups of user group backends'),
'label' => $this->translate('User Groups'),
'icon' => 'users',
'url' => 'group/list'
)
);
Expand Down
3 changes: 0 additions & 3 deletions application/controllers/UserController.php
Expand Up @@ -288,7 +288,6 @@ protected function createShowTabs($backendName, $userName)
array(
'title' => sprintf($this->translate('Show user %s'), $userName),
'label' => $this->translate('User'),
'icon' => 'user',
'url' => Url::fromPath('user/show', array('backend' => $backendName, 'user' => $userName))
)
);
Expand Down Expand Up @@ -319,7 +318,6 @@ protected function createListTabs()
array(
'title' => $this->translate('List users of authentication backends'),
'label' => $this->translate('Users'),
'icon' => 'user',
'url' => 'user/list'
)
);
Expand All @@ -328,7 +326,6 @@ protected function createListTabs()
array(
'title' => $this->translate('List groups of user group backends'),
'label' => $this->translate('User Groups'),
'icon' => 'users',
'url' => 'group/list'
)
);
Expand Down

0 comments on commit 3e5f801

Please sign in to comment.