'id', 'sName' => 'name', 'sInterceptorNamespace' => 'interceptor_namespace', 'sConfig' => 'config', ); var $_bUsePearError = true; function getName() { return $this->sName; } function getInterceptorNamespace() { return $this->sInterceptorNamespace; } function getConfig() { return $this->sConfig; } function setName($sName) { $this->sName = $sName; } function setInterceptorNamespace($mValue) { $this->sInterceptorNamespace = $mValue; } function setConfig($sConfig) { $this->sConfig = $sConfig; } function _table () { return KTUtil::getTableName('interceptor_instances'); } // STATIC function &get($iId) { return KTEntityUtil::get('KTInterceptorInstance', $iId); } // STATIC function &createFromArray($aOptions) { return KTEntityUtil::createFromArray('KTInterceptorInstance', $aOptions); } // STATIC function &getList($sWhereClause = null) { return KTEntityUtil::getList2('KTInterceptorInstance', $sWhereClause); } // STATIC function &getByInterceptorNamespace($sNamespace) { return KTEntityUtil::getBy('KTInterceptorInstance', 'namespace', $sNamespace); } function &getInterceptorInstances() { return KTEntityUtil::getList2('KTInterceptorInstance', $sWhereClause); } } ?>