Skip to content

Commit

Permalink
Icons added and code changed to display icons
Browse files Browse the repository at this point in the history
Signed-off-by: Chintan Zaveri <zaveri_chintan@rediff.com>

icons added:wq
  • Loading branch information
Chintan Zaveri committed Feb 25, 2016
1 parent 0d3cac9 commit 6735f33
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libraries/navigation/Navigation.php
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ public function getItemUnhideDialog($dbName, $itemType = null, $tableName = null
. '&itemName=' . urlencode($hiddenItem)
. '&dbName=' . urlencode($dbName) . '"'
. ' class="unhideNavItem ajax">'
. Util::getIcon('lightbulb.png', __('Show'))
. Util::getIcon('show.png', __('Show'))
. '</a></td>';
$odd = ! $odd;
}
Expand Down
2 changes: 1 addition & 1 deletion libraries/navigation/nodes/NodeDatabase.php
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ public function getHtmlForControlButtons()
. '&dbName=' . urldecode($this->real_name) . '"'
. ' class="showUnhide ajax">'
. Util::getImage(
'lightbulb.png',
'show.png',
__('Show hidden items')
)
. '</a></span>';
Expand Down
2 changes: 1 addition & 1 deletion libraries/navigation/nodes/NodeDatabaseChild.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function getHtmlForControlButtons()
. '&itemName=' . urlencode($item)
. '&dbName=' . urlencode($db) . '"'
. ' class="hideNavItem ajax">'
. PMA\libraries\Util::getImage('lightbulb_off.png', __('Hide'))
. PMA\libraries\Util::getImage('hide.png', __('Hide'))
. '</a></span>';
}

Expand Down
Binary file added themes/original/img/hide.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added themes/original/img/show.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added themes/pmahomme/img/hide.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added themes/pmahomme/img/show.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6735f33

Please sign in to comment.