The setter method only allows access to setting values in the options array

Paramètres

(string) name: Key name of the option you want to set:

(mixed) value: Value of the option you want to set:

Fichier

advagg_css_compress/css-compressor-3.x/src/lib/Control.inc, line 121

Classe

CSSCompression_Control
CSS Compressor [VERSION] [DATE] Corey Hart @ <a href="http://www.codenothing.com">http://www.codenothing.com</a>

Code

public function set($name, $value) {
    // Allow for passing array of options to merge into current ones
    if ($name === 'options' && is_array($value)) {
        return $this->Option
            ->merge($value);
    }
    else {
        if (isset(CSSCompression::$defaults[$name])) {
            return $this->Option
                ->option($name, $value);
        }
        else {
            throw new CSSCompression_Exception("Invalid Private Access to {$name} in CSSCompression.");
        }
    }
}