[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_7-10550-g1406bd8

Marc Delisle lem9 at users.sourceforge.net
Sat Oct 9 15:34:08 CEST 2010


The branch, master has been updated
       via  1406bd83b045e3e195b379ffb02848dd4ca7d7e1 (commit)
      from  7d0c11c2568998b8ff64c158b2485457c165179d (commit)


- Log -----------------------------------------------------------------
commit 1406bd83b045e3e195b379ffb02848dd4ca7d7e1
Author: Marc Delisle <marc at infomarc.info>
Date:   Sat Oct 9 09:33:57 2010 -0400

    use PMA_getIcon()

-----------------------------------------------------------------------

Summary of changes:
 libraries/build_action_titles.inc.php |   50 ++++++++-------------------------
 1 files changed, 12 insertions(+), 38 deletions(-)

diff --git a/libraries/build_action_titles.inc.php b/libraries/build_action_titles.inc.php
index e9da5f6..fe9dd5f 100644
--- a/libraries/build_action_titles.inc.php
+++ b/libraries/build_action_titles.inc.php
@@ -9,43 +9,17 @@ if (! defined('PHPMYADMIN')) {
 }
 
 $titles = array();
-if (true == $cfg['PropertiesIconic']) {
-    $titles['Browse']     = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_browse.png" alt="' . __('Browse') . '" title="' . __('Browse') . '" />';
-    $titles['NoBrowse']   = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'bd_browse.png" alt="' . __('Browse') . '" title="' . __('Browse') . '" />';
-    $titles['Search']     = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_select.png" alt="' . __('Search') . '" title="' . __('Search') . '" />';
-    $titles['NoSearch']   = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'bd_select.png" alt="' . __('Search') . '" title="' . __('Search') . '" />';
-    $titles['Insert']     = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_insrow.png" alt="' . __('Insert') . '" title="' . __('Insert') . '" />';
-    $titles['NoInsert']   = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'bd_insrow.png" alt="' . __('Insert') . '" title="' . __('Insert') . '" />';
-    $titles['Structure']  = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_props.png" alt="' . __('Structure') . '" title="' . __('Structure') . '" />';
-    $titles['Drop']       = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_drop.png" alt="' . __('Drop') . '" title="' . __('Drop') . '" />';
-    $titles['NoDrop']     = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'bd_drop.png" alt="' . __('Drop') . '" title="' . __('Drop') . '" />';
-    $titles['Empty']      = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_empty.png" alt="' . __('Empty') . '" title="' . __('Empty') . '" />';
-    $titles['NoEmpty']    = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'bd_empty.png" alt="' . __('Empty') . '" title="' . __('Empty') . '" />';
 
-    if ('both' === $cfg['PropertiesIconic']) {
-        $titles['Browse']     .= __('Browse');
-        $titles['Search']     .= __('Search');
-        $titles['NoBrowse']   .= __('Browse');
-        $titles['NoSearch']   .= __('Search');
-        $titles['Insert']     .= __('Insert');
-        $titles['NoInsert']   .= __('Insert');
-        $titles['Structure']  .= __('Structure');
-        $titles['Drop']       .= __('Drop');
-        $titles['NoDrop']     .= __('Drop');
-        $titles['Empty']      .= __('Empty');
-        $titles['NoEmpty']    .= __('Empty');
-    }
-} else {
-    $titles['Browse']     = __('Browse');
-    $titles['Search']     = __('Search');
-    $titles['NoBrowse']   = __('Browse');
-    $titles['NoSearch']   = __('Search');
-    $titles['Insert']     = __('Insert');
-    $titles['NoInsert']   = __('Insert');
-    $titles['Structure']  = __('Structure');
-    $titles['Drop']       = __('Drop');
-    $titles['NoDrop']     = __('Drop');
-    $titles['Empty']      = __('Empty');
-    $titles['NoEmpty']    = __('Empty');
-}
+$titles['Browse']     = PMA_getIcon('b_browse.png', __('Browse'), true);
+$titles['NoBrowse']   = PMA_getIcon('bd_browse.png', __('Browse'), true);
+$titles['Search']     = PMA_getIcon('b_select.png', __('Search'), true);
+$titles['NoSearch']   = PMA_getIcon('bd_select.png', __('Search'), true);
+$titles['Insert']     = PMA_getIcon('b_insrow.png', __('Insert'), true);
+$titles['NoInsert']   = PMA_getIcon('bd_insrow.png', __('Insert'), true);
+$titles['Structure']  = PMA_getIcon('b_props.png', __('Structure'), true);
+$titles['Drop']       = PMA_getIcon('b_drop.png', __('Drop'), true);
+$titles['NoDrop']     = PMA_getIcon('bd_drop.png', __('Drop'), true);
+$titles['Empty']      = PMA_getIcon('b_empty.png', __('Empty'), true);
+$titles['NoEmpty']    = PMA_getIcon('bd_empty.png', __('Empty'), true);
+
 ?>


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list