class QueryPathOptions in QueryPath 6
Same name and namespace in other branches
- 7.3 QueryPath/QueryPath.php \QueryPathOptions
 - 7.2 QueryPath/QueryPath.php \QueryPathOptions
 
Hierarchy
- class \QueryPathOptions
 
Expanded class hierarchy of QueryPathOptions
File
- QueryPath/
QueryPath.php, line 2186  
View source
class QueryPathOptions {
  static $options = array();
  static function set($array) {
    self::$options = $array;
  }
  static function get() {
    return self::$options;
  }
  static function merge($array) {
    self::$options = $array + self::$options;
  }
  static function has($key) {
    return array_key_exists($key, self::$options);
  }
}Members
| 
            Name | 
                  Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| 
            QueryPathOptions:: | 
                  static | property | ||
| 
            QueryPathOptions:: | 
                  static | function | ||
| 
            QueryPathOptions:: | 
                  static | function | ||
| 
            QueryPathOptions:: | 
                  static | function | ||
| 
            QueryPathOptions:: | 
                  static | function |