this.icon = {
- root : imagePath+'/base.gif',
+ root : imagePath+'/base.png',
- folder : imagePath+'/folder.gif',
+ folder : imagePath+'/folder.png',
- folderOpen : imagePath+'/folderopen.gif',
+ folderOpen : imagePath+'/folderopen.png',
- node : imagePath+'/page.gif',
+ node : imagePath+'/page.png',
- empty : imagePath+'/empty.gif',
+ empty : imagePath+'/empty.png',
- line : imagePath+'/line.gif',
+ line : imagePath+'/line.png',
- join : imagePath+'/join.gif',
+ join : imagePath+'/join.png',
- joinBottom : imagePath+'/joinbottom.gif',
+ joinBottom : imagePath+'/joinbottom.png',
- plus : imagePath+'/plus.gif',
+ plus : imagePath+'/plus.png',
- plusBottom : imagePath+'/plusbottom.gif',
+ plusBottom : imagePath+'/plusbottom.png',
- minus : imagePath+'/minus.gif',
+ minus : imagePath+'/minus.png',
- minusBottom : imagePath+'/minusbottom.gif',
+ minusBottom : imagePath+'/minusbottom.png',
- nlPlus : imagePath+'/nolines_plus.gif',
+ nlPlus : imagePath+'/nolines_plus.png',
- nlMinus : imagePath+'/nolines_minus.gif'
+ nlMinus : imagePath+'/nolines_minus.png'
};
$img_open = '';
switch (true) {
case $box['IsInbox']:
- $img = $image_path . 'base.gif';
- $img_open = $image_path . 'base.gif';
+ $img = $image_path . 'base.png';
+ $img_open = $image_path . 'base.png';
break;
case $box['IsTrash']:
- $img = $image_path . 'trash.gif';
- $img_open = $image_path . 'trash.gif';
+ $img = $image_path . 'trash.png';
+ $img_open = $image_path . 'trash.png';
break;
case $box['IsNoSelect']:
case $box['IsNoInferiors']:
- $img = $image_path . 'page.gif';
- $img_open = $image_path . 'page.gif';
+ $img = $image_path . 'page.png';
+ $img_open = $image_path . 'page.png';
break;
default:
- $img = $image_path . 'folder.gif';
- $img_open = $image_path . 'folderopen.gif';
+ $img = $image_path . 'folder.png';
+ $img_open = $image_path . 'folderopen.png';
break;
}