"id", "sName" => "name", "sDescription" => "description", "sTitle" => 'title', ); var $_bUsePearError = true; function getID() { return $this->iId; } function getName() { return sanitizeForSQLtoHTML($this->sName); } function getDescription() { return sanitizeForSQLtoHTML($this->sDescription); } function getTitle() { return sanitizeForSQLtoHTML($this->sTitle); } function setID($iId) { $this->iId = $iId; } function setName($sName) { $this->sName = sanitizeForSQL($sName); } function setDescription($sDescription) { $this->sDescription = sanitizeForSQL($sDescription); } function setTitle($sTitle) { $this->sTitle= sanitizeForSQL($sTitle); } function _table () { global $default; return $default->help_replacement_table; } // STATIC function &get($iId) { return KTEntityUtil::get('KTHelpReplacement', $iId); } // STATIC function &createFromArray($aOptions) { return KTEntityUtil::createFromArray('KTHelpReplacement', $aOptions); } function &getList($sWhereClause = null) { global $default; return KTEntityUtil::getList($default->help_replacement_table, 'KTHelpReplacement', $sWhereClause); } function &getByName($sName) { return KTEntityUtil::getBy('KTHelpReplacement', 'name', $sName); } } ?>