<?php
//require_once("FiForms_genericIcons.inc.php");
require_once($FIFORMS_CONFIG['INCLUDE_PATH']."FiForms_genericIcons.inc.php");
class iconset extends genericIcons
{
function iconset()
{
$this->first = "First";
$this->previous = "Previous";
$this->next = "Next";
$this->last = "Last";
$this->new = "New";
$this->delete = "Delete";
$this->update = "Update Record";
$this->insert = "Insert Record";
$this->sv = "Sheet View";
$this->svView = "View";
$this->svNew = "New Record";
$this->down = "+";
}
}
?>