00001 <?php 00024 class BaseFilter extends BaseFrameworkSystem { 00025 // Exception constants 00026 const EXCEPTION_FILTER_CHAIN_ABORTED = 0x1a0; 00027 00034 protected function __construct ($className) { 00035 // Call parent constructor 00036 parent::__construct($className); 00037 00038 // Clean up a little 00039 $this->removeNumberFormaters(); 00040 $this->removeSystemArray(); 00041 } 00042 } 00043 00044 // [EOF] 00045 ?>
1.5.6