mixed) $options */ public function __construct( array $options = array() ) { $this->properties['noLock'] = false; $this->properties['waitForLock'] = 200000; $this->properties['lockFileName'] = '.ezc_lock'; $this->properties['propertyStoragePath'] = '.ezc'; $this->properties['directoryMode'] = 0755; $this->properties['fileMode'] = 0644; $this->properties['useMimeExts'] = true; $this->properties['hideDotFiles'] = true; parent::__construct( $options ); } /** * Sets the option $name to $value. * * @throws ezcBasePropertyNotFoundException * if the property $name is not defined * @throws ezcBaseValueException * if $value is not correct for the property $name * @param string $name * @param mixed $value * @ignore */ public function __set( $name, $value ) { switch ( $name ) { case 'noLock': case 'useMimeExts': case 'hideDotFiles': if ( !is_bool( $value ) ) { throw new ezcBaseValueException( $name, $value, 'bool' ); } $this->properties[$name] = $value; break; case 'lockFileName': case 'propertyStoragePath': if ( !is_string( $value ) ) { throw new ezcBaseValueException( $name, $value, 'regular expression' ); } $this->properties[$name] = $value; break; case 'waitForLock': case 'fileMode': case 'directoryMode': if ( !is_int( $value ) ) { throw new ezcBaseValueException( $name, $value, 'integer' ); } $this->properties[$name] = $value; break; default: throw new ezcBasePropertyNotFoundException( $name ); } } } ?>