(Proxy function) Maintainable access to the options array
- Passing no arguments returns the entire options array - Passing a single name argument returns the value for the option - Passing an array will merge the options with the array passed, for object like extension - Passing both a name and value, sets the value to the name key, and returns the value
Paramètres
(mixed) name: The key name of the option:
(mixed) value: Value to set the option:
Fichier
-
advagg_css_compress/
css-compressor-3.x/ src/ CSSCompression.inc, line 300
Classe
Code
public function option($name = NULL, $value = NULL) {
return $this->Control->Option
->option($name, $value);
}