Skip to content

Commit

Permalink
Removed references to old icons.
Browse files Browse the repository at this point in the history
  • Loading branch information
jollytoad committed Nov 25, 2005
1 parent eff2db1 commit b7597f4
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions browser.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* if you click on a database it shows a list of database objects in that
* database.
*
* $Id: browser.php,v 1.53 2005/11/25 08:49:08 jollytoad Exp $
* $Id: browser.php,v 1.54 2005/11/25 08:59:35 jollytoad Exp $
*/

// Include application functions
Expand All @@ -30,9 +30,9 @@

webFXTreeConfig.rootIcon = "<?php echo $misc->icon('Servers') ?>";
webFXTreeConfig.openRootIcon = "<?php echo $misc->icon('Servers') ?>";
webFXTreeConfig.folderIcon = "<?php echo $misc->icon('folder') ?>";
webFXTreeConfig.openFolderIcon = "<?php echo $misc->icon('folderOpen') ?>";
webFXTreeConfig.fileIcon = "<?php echo $misc->icon('file') ?>";
webFXTreeConfig.folderIcon = "";
webFXTreeConfig.openFolderIcon = "";
webFXTreeConfig.fileIcon = "";
webFXTreeConfig.iIcon = "<?php echo $misc->icon('I') ?>";
webFXTreeConfig.lIcon = "<?php echo $misc->icon('L') ?>";
webFXTreeConfig.lMinusIcon = "<?php echo $misc->icon('Lminus') ?>";
Expand Down
4 changes: 2 additions & 2 deletions database.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* Manage schemas within a database
*
* $Id: database.php,v 1.78 2005/11/09 09:05:58 jollytoad Exp $
* $Id: database.php,v 1.79 2005/11/25 08:59:35 jollytoad Exp $
*/

// Include application functions
Expand Down Expand Up @@ -546,7 +546,7 @@ function doTree() {

$attrs = array(
'text' => noEscape(field('title')),
'icon' => field('icon', 'folder'),
'icon' => field('icon'),
'action' => url(field('url'),
$reqvars,
field('urlvars', array())
Expand Down
18 changes: 9 additions & 9 deletions plugin_slony.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* Slony database tab plugin
*
* $Id: plugin_slony.php,v 1.7 2005/11/25 08:49:08 jollytoad Exp $
* $Id: plugin_slony.php,v 1.8 2005/11/25 08:59:35 jollytoad Exp $
*/

// Avoid database connections whenever possible
Expand Down Expand Up @@ -58,7 +58,7 @@ function doTree($subject) {

$attrs = array(
'text' => noEscape(field('title')),
'icon' => field('icon', 'folder'),
'icon' => field('icon'),
'action' => url(field('url'),
$reqvars,
array('action' => 'cluster_properties')
Expand Down Expand Up @@ -86,7 +86,7 @@ function doTree($subject) {

$attrs = array(
'text' => noEscape(field('title')),
'icon' => field('icon', 'folder'),
'icon' => field('icon'),
'action' => url(field('url'),
$reqvars,
field('urlvars', array()),
Expand Down Expand Up @@ -115,7 +115,7 @@ function doTree($subject) {

$attrs = array(
'text' => noEscape(field('title')),
'icon' => field('icon', 'folder'),
'icon' => field('icon'),
'action' => url(field('url'),
$reqvars,
field('urlvars', array()),
Expand Down Expand Up @@ -174,7 +174,7 @@ function doTree($subject) {

$attrs = array(
'text' => noEscape(field('title')),
'icon' => field('icon', 'folder'),
'icon' => field('icon'),
'action' => url(field('url'),
$reqvars,
field('urlvars', array()),
Expand All @@ -201,7 +201,7 @@ function doTree($subject) {

$attrs = array(
'text' => noEscape(field('title')),
'icon' => field('icon', 'folder'),
'icon' => field('icon'),
'action' => url(field('url'),
$reqvars,
field('urlvars', array()),
Expand Down Expand Up @@ -286,7 +286,7 @@ function doTree($subject) {

$attrs = array(
'text' => noEscape(field('title')),
'icon' => field('icon', 'sequences'),
'icon' => field('icon'),
'action' => url(field('url'),
$reqvars,
field('urlvars', array()),
Expand All @@ -313,7 +313,7 @@ function doTree($subject) {

$attrs = array(
'text' => noEscape(field('title')),
'icon' => field('icon', 'tables'),
'icon' => field('icon'),
'action' => url(field('url'),
$reqvars,
field('urlvars', array()),
Expand Down Expand Up @@ -341,7 +341,7 @@ function doTree($subject) {

$attrs = array(
'text' => noEscape(field('title')),
'icon' => field('icon', 'folder'),
'icon' => field('icon'),
'action' => url(field('url'),
$reqvars,
field('urlvars', array()),
Expand Down
4 changes: 2 additions & 2 deletions schemas.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* Manage schemas in a database
*
* $Id: schemas.php,v 1.5 2005/11/25 08:49:08 jollytoad Exp $
* $Id: schemas.php,v 1.6 2005/11/25 08:59:35 jollytoad Exp $
*/

// Include application functions
Expand Down Expand Up @@ -280,7 +280,7 @@ function doSubTree() {

$attrs = array(
'text' => noEscape(field('title')),
'icon' => field('icon', 'folder'),
'icon' => field('icon'),
'action' => url(field('url'),
$reqvars,
field('urlvars', array())
Expand Down

0 comments on commit b7597f4

Please sign in to comment.