| Server IP : 208.122.213.31 / Your IP : 216.73.216.45 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/httpd/html/store.tiacyrusxxx.com/public_html/whale/QueryPath/src/QueryPath/ |
Upload File : |
<?php
/**
* @file
*
* Options management.
*/
namespace QueryPath;
/**
* Manage default options.
*
* This class stores the default options for QueryPath. When a new
* QueryPath object is constructed, options specified here will be
* used.
*
* <b>Details</b>
* This class defines no options of its own. Instead, it provides a
* central tool for developers to override options set by QueryPath.
* When a QueryPath object is created, it will evaluate options in the
* following order:
*
* - Options passed into qp() have highest priority.
* - Options in QueryPath::Options (this class) have the next highest priority.
* - If the option is not specified elsewhere, QueryPath will use its own defaults.
*
* @see qp()
* @see QueryPath::Options::set()
* @ingroup querypath_util
*/
class Options {
/**
* This is the static options array.
*
* Use the {@link set()}, {@link get()}, and {@link merge()} to
* modify this array.
*/
static $options = array();
/**
* Set the default options.
*
* The passed-in array will be used as the default options list.
*
* @param array $array
* An associative array of options.
*/
static function set($array) {
self::$options = $array;
}
/**
* Get the default options.
*
* Get all options currently set as default.
*
* @return array
* An array of options. Note that only explicitly set options are
* returned. {@link QueryPath} defines default options which are not
* stored in this object.
*/
static function get() {
return self::$options;
}
/**
* Merge the provided array with existing options.
*
* On duplicate keys, the value in $array will overwrite the
* value stored in the options.
*
* @param array $array
* Associative array of options to merge into the existing options.
*/
static function merge($array) {
self::$options = $array + self::$options;
}
/**
* Returns true of the specified key is already overridden in this object.
*
* @param string $key
* The key to search for.
*/
static function has($key) {
return array_key_exists($key, self::$options);
}
}