<?php
//require_once($FIFORMS_CONFIG['INCLUDE_PATH']."FiForms_genericIcons.inc.php");
class iconset extends genericIcons
{
function imgTag($img,$action)
{
return ("<img src=\"".$GLOBALS['FIFORMS_CONFIG']['URI']."/themes/topblue-gif/gif-small/".$img."\" style=\"border-width: 0px;\" alt=\"$action\" />");
}
function iconset()
{
global $FIFORMS_CONFIG;
$this->FiForms_genericIcons();
$this->first = $this->imgTag("first.gif","First");
$this->previous = $this->imgTag("back.gif","Previous");
$this->next = $this->imgTag("forward.gif","Next");
$this->last = $this->imgTag("last.gif","Last");
$this->firstDisabled = $this->imgTag("firstd.gif","First");
$this->previousDisabled = $this->imgTag("backd.gif","Previous");
$this->nextDisabled = $this->imgTag("forwardd.gif","Next");
$this->lastDisabled = $this->imgTag("lastd.gif","Last");
$this->new = $this->imgTag("new.gif","New");
$this->delete = $this->imgTag("delete.gif","Delete");
$this->update = "Update Record";
$this->insert = "Insert Record";
$this->sv = $this->imgTag("sheet.gif","Sheet View");
$this->svView = $this->imgTag("edit.gif","Edit");
$this->svNew = "New Record";
$this->down = $this->imgTag("down.gif","+");
$this->filter = $this->imgTag("lightningbw.png","*");
$this->filterActive = $this->imgTag("lightningblue.png","*");
$this->ascSort = $this->imgTag("down.gif","Ascending");
$this->descSort = $this->imgTag("up.gif","Descending");
$this->poweredBy = "<div class=\"poweredBy\"><a href=\"http://www.fiforms.org/\" style=\"border=0px;\" target=\"_blank\">".$this->imgTag("pb_light.gif","Powered by FiForms")."</a></div>";
$this->buttonType = "button";
$this->refresh = $this->imgTag("refresh.gif","Refresh");
$this->downURI = $FIFORMS_CONFIG['URI'].'themes/topblue-gif/gif-small/down.gif';
$this->refreshURI = $FIFORMS_CONFIG['URI'].'themes/topblue-gif/gif-small/refresh.gif';
}
}
?>