2770 changed files with 347804 additions and 72322 deletions
@ -0,0 +1,44 @@
|
||||
<?php |
||||
return [ |
||||
"target_php_version" => null, |
||||
'pretend_newer_core_functions_exist' => true, |
||||
'allow_missing_properties' => false, |
||||
'null_casts_as_any_type' => false, |
||||
'null_casts_as_array' => false, |
||||
'array_casts_as_null' => false, |
||||
'strict_method_checking' => true, |
||||
'quick_mode' => false, |
||||
'simplify_ast' => false, |
||||
'directory_list' => [ |
||||
'.', |
||||
], |
||||
"exclude_analysis_directory_list" => [ |
||||
'vendor/' |
||||
], |
||||
'exclude_file_list' => [ |
||||
'system/src/Grav/Common/Errors/Resources/layout.html.php', |
||||
'tests/_support/AcceptanceTester.php', |
||||
'tests/_support/FunctionalTester.php', |
||||
'tests/_support/UnitTester.php', |
||||
], |
||||
'autoload_internal_extension_signatures' => [ |
||||
'memcached' => '.phan/internal_stubs/memcached.phan_php', |
||||
'memcache' => '.phan/internal_stubs/memcache.phan_php', |
||||
'redis' => '.phan/internal_stubs/Redis.phan_php', |
||||
], |
||||
'plugins' => [ |
||||
'AlwaysReturnPlugin', |
||||
'UnreachableCodePlugin', |
||||
'DuplicateArrayKeyPlugin', |
||||
'PregRegexCheckerPlugin', |
||||
'PrintfCheckerPlugin', |
||||
], |
||||
'suppress_issue_types' => [ |
||||
'PhanUnreferencedUseNormal', |
||||
'PhanTypeObjectUnsetDeclaredProperty', |
||||
'PhanTraitParentReference', |
||||
'PhanTypeInvalidThrowsIsInterface', |
||||
'PhanRequiredTraitNotAdded', |
||||
'PhanDeprecatedFunction', // Uncomment this to see all the deprecated calls |
||||
] |
||||
]; |
||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,460 @@
|
||||
<?php |
||||
|
||||
// Start of memcache v.3.0.8 |
||||
|
||||
class MemcachePool { |
||||
|
||||
/** |
||||
* (PECL memcache >= 0.2.0)<br/> |
||||
* Open memcached server connection |
||||
* @link https://php.net/manual/en/memcache.connect.php |
||||
* @param string $host <p> |
||||
* Point to the host where memcached is listening for connections. This parameter |
||||
* may also specify other transports like <em>unix:///path/to/memcached.sock</em> |
||||
* to use UNIX domain sockets, in this case <b>port</b> must also |
||||
* be set to <em>0</em>. |
||||
* </p> |
||||
* @param int $port [optional] <p> |
||||
* Point to the port where memcached is listening for connections. Set this |
||||
* parameter to <em>0</em> when using UNIX domain sockets. |
||||
* </p> |
||||
* <p> |
||||
* Please note: <b>port</b> defaults to |
||||
* {@link https://php.net/manual/ru/memcache.ini.php#ini.memcache.default-port memcache.default_port} |
||||
* if not specified. For this reason it is wise to specify the port |
||||
* explicitly in this method call. |
||||
* </p> |
||||
* @param int $timeout [optional] <p>Value in seconds which will be used for connecting to the daemon. Think twice before changing the default value of 1 second - you can lose all the advantages of caching if your connection is too slow.</p> |
||||
* @return bool <p>Returns <b>TRUE</b> on success or <b>FALSE</b> on failure.</p> |
||||
*/ |
||||
public function connect ($host, $port, $timeout = 1) {} |
||||
|
||||
/** |
||||
* (PECL memcache >= 2.0.0)<br/> |
||||
* Add a memcached server to connection pool |
||||
* @link https://php.net/manual/en/memcache.addserver.php |
||||
* @param string $host <p> |
||||
* Point to the host where memcached is listening for connections. This parameter |
||||
* may also specify other transports like unix:///path/to/memcached.sock |
||||
* to use UNIX domain sockets, in this case <i>port</i> must also |
||||
* be set to 0. |
||||
* </p> |
||||
* @param int $port [optional] <p> |
||||
* Point to the port where memcached is listening for connections. |
||||
* Set this |
||||
* parameter to 0 when using UNIX domain sockets. |
||||
* </p> |
||||
* <p> |
||||
* Please note: <i>port</i> defaults to |
||||
* memcache.default_port |
||||
* if not specified. For this reason it is wise to specify the port |
||||
* explicitly in this method call. |
||||
* </p> |
||||
* @param bool $persistent [optional] <p> |
||||
* Controls the use of a persistent connection. Default to <b>TRUE</b>. |
||||
* </p> |
||||
* @param int $weight [optional] <p> |
||||
* Number of buckets to create for this server which in turn control its |
||||
* probability of it being selected. The probability is relative to the |
||||
* total weight of all servers. |
||||
* </p> |
||||
* @param int $timeout [optional] <p> |
||||
* Value in seconds which will be used for connecting to the daemon. Think |
||||
* twice before changing the default value of 1 second - you can lose all |
||||
* the advantages of caching if your connection is too slow. |
||||
* </p> |
||||
* @param int $retry_interval [optional] <p> |
||||
* Controls how often a failed server will be retried, the default value |
||||
* is 15 seconds. Setting this parameter to -1 disables automatic retry. |
||||
* Neither this nor the <i>persistent</i> parameter has any |
||||
* effect when the extension is loaded dynamically via <b>dl</b>. |
||||
* </p> |
||||
* <p> |
||||
* Each failed connection struct has its own timeout and before it has expired |
||||
* the struct will be skipped when selecting backends to serve a request. Once |
||||
* expired the connection will be successfully reconnected or marked as failed |
||||
* for another <i>retry_interval</i> seconds. The typical |
||||
* effect is that each web server child will retry the connection about every |
||||
* <i>retry_interval</i> seconds when serving a page. |
||||
* </p> |
||||
* @param bool $status [optional] <p> |
||||
* Controls if the server should be flagged as online. Setting this parameter |
||||
* to <b>FALSE</b> and <i>retry_interval</i> to -1 allows a failed |
||||
* server to be kept in the pool so as not to affect the key distribution |
||||
* algorithm. Requests for this server will then failover or fail immediately |
||||
* depending on the <i>memcache.allow_failover</i> setting. |
||||
* Default to <b>TRUE</b>, meaning the server should be considered online. |
||||
* </p> |
||||
* @param callable $failure_callback [optional] <p> |
||||
* Allows the user to specify a callback function to run upon encountering an |
||||
* error. The callback is run before failover is attempted. The function takes |
||||
* two parameters, the hostname and port of the failed server. |
||||
* </p> |
||||
* @param int $timeoutms [optional] <p> |
||||
* </p> |
||||
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure. |
||||
*/ |
||||
public function addServer ($host, $port = 11211, $persistent = true, $weight = null, $timeout = 1, $retry_interval = 15, $status = true, callable $failure_callback = null, $timeoutms = null) {} |
||||
|
||||
/** |
||||
* (PECL memcache >= 2.1.0)<br/> |
||||
* Changes server parameters and status at runtime |
||||
* @link https://secure.php.net/manual/en/memcache.setserverparams.php |
||||
* @param string $host <p>Point to the host where memcached is listening for connections.</p. |
||||
* @param int $port [optional] <p> |
||||
* Point to the port where memcached is listening for connections. |
||||
* </p> |
||||
* @param int $timeout [optional] <p> |
||||
* Value in seconds which will be used for connecting to the daemon. Think twice before changing the default value of 1 second - you can lose all the advantages of caching if your connection is too slow. |
||||
* </p> |
||||
* @param int $retry_interval [optional] <p> |
||||
* Controls how often a failed server will be retried, the default value |
||||
* is 15 seconds. Setting this parameter to -1 disables automatic retry. |
||||
* Neither this nor the <b>persistent</b> parameter has any |
||||
* effect when the extension is loaded dynamically via {@link https://secure.php.net/manual/en/function.dl.php dl()}. |
||||
* </p> |
||||
* @param bool $status [optional] <p> |
||||
* Controls if the server should be flagged as online. Setting this parameter |
||||
* to <b>FALSE</b> and <b>retry_interval</b> to -1 allows a failed |
||||
* server to be kept in the pool so as not to affect the key distribution |
||||
* algorithm. Requests for this server will then failover or fail immediately |
||||
* depending on the <b>memcache.allow_failover</b> setting. |
||||
* Default to <b>TRUE</b>, meaning the server should be considered online. |
||||
* </p> |
||||
* @param callable $failure_callback [optional] <p> |
||||
* Allows the user to specify a callback function to run upon encountering an error. The callback is run before failover is attempted. |
||||
* The function takes two parameters, the hostname and port of the failed server. |
||||
* </p> |
||||
* @return bool <p>Returns <b>TRUE</b> on success or <b>FALSE</b> on failure.</p> |
||||
*/ |
||||
public function setServerParams ($host, $port = 11211, $timeout = 1, $retry_interval = 15, $status = true, callable $failure_callback = null) {} |
||||
|
||||
/** |
||||
* |
||||
*/ |
||||
public function setFailureCallback () {} |
||||
|
||||
/** |
||||
* (PECL memcache >= 2.1.0)<br/> |
||||
* Returns server status |
||||
* @link https://php.net/manual/en/memcache.getserverstatus.php |
||||
* @param string $host Point to the host where memcached is listening for connections. |
||||
* @param int $port Point to the port where memcached is listening for connections. |
||||
* @return int Returns a the servers status. 0 if server is failed, non-zero otherwise |
||||
*/ |
||||
public function getServerStatus ($host, $port = 11211) {} |
||||
|
||||
/** |
||||
* |
||||
*/ |
||||
public function findServer () {} |
||||
|
||||
/** |
||||
* (PECL memcache >= 0.2.0)<br/> |
||||
* Return version of the server |
||||
* @link https://php.net/manual/en/memcache.getversion.php |
||||
* @return string|false Returns a string of server version number or <b>FALSE</b> on failure. |
||||
*/ |
||||
public function getVersion () {} |
||||
|
||||
/** |
||||
* (PECL memcache >= 2.0.0)<br/> |
||||
* Add an item to the server. If the key already exists, the value will not be added and <b>FALSE</b> will be returned. |
||||
* @link https://php.net/manual/en/memcache.add.php |
||||
* @param string $key The key that will be associated with the item. |
||||
* @param mixed $var The variable to store. Strings and integers are stored as is, other types are stored serialized. |
||||
* @param int $flag [optional] <p> |
||||
* Use <b>MEMCACHE_COMPRESSED</b> to store the item |
||||
* compressed (uses zlib). |
||||
* </p> |
||||
* @param int $expire [optional] <p>Expiration time of the item. |
||||
* If it's equal to zero, the item will never expire. |
||||
* You can also use Unix timestamp or a number of seconds starting from current time, but in the latter case the number of seconds may not exceed 2592000 (30 days).</p> |
||||
* @return bool Returns <b>TRUE</b> on success or <b>FALSE</b> on failure. Returns <b>FALSE</b> if such key already exist. For the rest Memcache::add() behaves similarly to Memcache::set(). |
||||
*/ |
||||
public function add ($key , $var, $flag = null, $expire = null) {} |
||||
|
||||
/** |
||||
* (PECL memcache >= 0.2.0)<br/> |
||||
* Stores an item var with key on the memcached server. Parameter expire is expiration time in seconds. |
||||
* If it's 0, the item never expires (but memcached server doesn't guarantee this item to be stored all the time, |
||||
* it could be deleted from the cache to make place for other items). |
||||
* You can use MEMCACHE_COMPRESSED constant as flag value if you want to use on-the-fly compression (uses zlib). |
||||
* @link https://php.net/manual/en/memcache.set.php |
||||
* @param string $key The key that will be associated with the item. |
||||
* @param mixed $var The variable to store. Strings and integers are stored as is, other types are stored serialized. |
||||
* @param int $flag [optional] Use MEMCACHE_COMPRESSED to store the item compressed (uses zlib). |
||||
* @param int $expire [optional] Expiration time of the item. If it's equal to zero, the item will never expire. You can also use Unix timestamp or a number of seconds starting from current time, but in the latter case the number of seconds may not exceed 2592000 (30 days). |
||||
* @return bool Returns <b>TRUE</b> on success or <b>FALSE</b> on failure. |
||||
*/ |
||||
public function set ($key, $var, $flag = null, $expire = null) {} |
||||
|
||||
/** |
||||
* (PECL memcache >= 0.2.0)<br/> |
||||
* Replace value of the existing item |
||||
* @link https://php.net/manual/en/memcache.replace.php |
||||
* @param string $key <p>The key that will be associated with the item.</p> |
||||
* @param mixed $var <p>The variable to store. Strings and integers are stored as is, other types are stored serialized.</p> |
||||
* @param int $flag [optional] <p>Use <b>MEMCACHE_COMPRESSED</b> to store the item compressed (uses zlib).</p> |
||||
* @param int $expire [optional] <p>Expiration time of the item. If it's equal to zero, the item will never expire. You can also use Unix timestamp or a number of seconds starting from current time, but in the latter case the number of seconds may not exceed 2592000 (30 days).</p> |
||||
* @return bool Returns TRUE on success or FALSE on failure. |
||||
*/ |
||||
public function replace ($key, $var, $flag = null, $expire = null) {} |
||||
|
||||
public function cas () {} |
||||
|
||||
public function append () {} |
||||
|
||||
/** |
||||
* @return string |
||||
*/ |
||||
public function prepend () {} |
||||
|
||||
/** |
||||
* (PECL memcache >= 0.2.0)<br/> |
||||
* Retrieve item from the server |
||||
* @link https://php.net/manual/en/memcache.get.php |
||||
* @param string|array $key <p> |
||||
* The key or array of keys to fetch. |
||||
* </p> |
||||
* @param int|array $flags [optional] <p> |
||||
* If present, flags fetched along with the values will be written to this parameter. These |
||||
* flags are the same as the ones given to for example {@link https://php.net/manual/en/memcache.set.php Memcache::set()}. |
||||
* The lowest byte of the int is reserved for pecl/memcache internal usage (e.g. to indicate |
||||
* compression and serialization status). |
||||
* </p> |
||||
* @return string|array|false <p> |
||||
* Returns the string associated with the <b>key</b> or |
||||
* an array of found key-value pairs when <b>key</b> is an {@link https://php.net/manual/en/language.types.array.php array}. |
||||
* Returns <b>FALSE</b> on failure, <b>key</b> is not found or |
||||
* <b>key</b> is an empty {@link https://php.net/manual/en/language.types.array.php array}. |
||||
* </p> |
||||
*/ |
||||
public function get ($key, &$flags = null) {} |
||||
|
||||
/** |
||||
* (PECL memcache >= 0.2.0)<br/> |
||||
* Delete item from the server |
||||
* https://secure.php.net/manual/ru/memcache.delete.php |
||||
* @param $key string The key associated with the item to delete. |
||||
* @param $timeout int [optional] This deprecated parameter is not supported, and defaults to 0 seconds. Do not use this parameter. |
||||
* @return bool Returns <b>TRUE</b> on success or <b>FALSE</b> on failure. |
||||
*/ |
||||
public function delete ($key, $timeout = 0 ) {} |
||||
|
||||
/** |
||||
* (PECL memcache >= 0.2.0)<br/> |
||||
* Get statistics of the server |
||||
* @link https://php.net/manual/ru/memcache.getstats.php |
||||
* @param string $type [optional] <p> |
||||
* The type of statistics to fetch. |
||||
* Valid values are {reset, malloc, maps, cachedump, slabs, items, sizes}. |
||||
* According to the memcached protocol spec these additional arguments "are subject to change for the convenience of memcache developers".</p> |
||||
* @param int $slabid [optional] <p> |
||||
* Used in conjunction with <b>type</b> set to |
||||
* cachedump to identify the slab to dump from. The cachedump |
||||
* command ties up the server and is strictly to be used for |
||||
* debugging purposes. |
||||
* </p> |
||||
* @param int $limit [optional] <p> |
||||
* Used in conjunction with <b>type</b> set to cachedump to limit the number of entries to dump. |
||||
* </p> |
||||
* @return array|false Returns an associative array of server statistics or <b>FALSE</b> on failure. |
||||
*/ |
||||
public function getStats ($type = null, $slabid = null, $limit = 100) {} |
||||
|
||||
/** |
||||
* (PECL memcache >= 2.0.0)<br/> |
||||
* Get statistics from all servers in pool |
||||
* @link https://php.net/manual/en/memcache.getextendedstats.php |
||||
* @param string $type [optional] <p>The type of statistics to fetch. Valid values are {reset, malloc, maps, cachedump, slabs, items, sizes}. According to the memcached protocol spec these additional arguments "are subject to change for the convenience of memcache developers".</p> |
||||
* @param int $slabid [optional] <p> |
||||
* Used in conjunction with <b>type</b> set to |
||||
* cachedump to identify the slab to dump from. The cachedump |
||||
* command ties up the server and is strictly to be used for |
||||
* debugging purposes. |
||||
* </p> |
||||
* @param int $limit Used in conjunction with type set to cachedump to limit the number of entries to dump. |
||||
* @return array|false Returns a two-dimensional associative array of server statistics or <b>FALSE</b> |
||||
* Returns a two-dimensional associative array of server statistics or <b>FALSE</b> |
||||
* on failure. |
||||
*/ |
||||
public function getExtendedStats ($type = null, $slabid = null, $limit = 100) {} |
||||
|
||||
/** |
||||
* (PECL memcache >= 2.0.0)<br/> |
||||
* Enable automatic compression of large values |
||||
* @link https://php.net/manual/en/memcache.setcompressthreshold.php |
||||
* @param int $thresold <p>Controls the minimum value length before attempting to compress automatically.</p> |
||||
* @param float $min_saving [optional] <p>Specifies the minimum amount of savings to actually store the value compressed. The supplied value must be between 0 and 1. Default value is 0.2 giving a minimum 20% compression savings.</p> |
||||
* @return bool Returns <b>TRUE</b> on success or <b>FALSE</b> on failure. |
||||
*/ |
||||
public function setCompressThreshold ($thresold, $min_saving = 0.2) {} |
||||
/** |
||||
* (PECL memcache >= 0.2.0)<br/> |
||||
* Increment item's value |
||||
* @link https://php.net/manual/en/memcache.increment.php |
||||
* @param $key string Key of the item to increment. |
||||
* @param $value int [optional] increment the item by <b>value</b> |
||||
* @return int|false Returns new items value on success or <b>FALSE</b> on failure. |
||||
*/ |
||||
public function increment ($key, $value = 1) {} |
||||
|
||||
/** |
||||
* (PECL memcache >= 0.2.0)<br/> |
||||
* Decrement item's value |
||||
* @link https://php.net/manual/en/memcache.decrement.php |
||||
* @param $key string Key of the item do decrement. |
||||
* @param $value int Decrement the item by <b>value</b>. |
||||
* @return int|false Returns item's new value on success or <b>FALSE</b> on failure. |
||||
*/ |
||||
public function decrement ($key, $value = 1) {} |
||||
|
||||
/** |
||||
* (PECL memcache >= 0.4.0)<br/> |
||||
* Close memcached server connection |
||||
* @link https://php.net/manual/en/memcache.close.php |
||||
* @return bool Returns <b>TRUE</b> on success or <b>FALSE</b> on failure. |
||||
*/ |
||||
public function close () {} |
||||
|
||||
/** |
||||
* (PECL memcache >= 1.0.0)<br/> |
||||
* Flush all existing items at the server |
||||
* @link https://php.net/manual/en/memcache.flush.php |
||||
* @return bool Returns <b>TRUE</b> on success or <b>FALSE</b> on failure. |
||||
*/ |
||||
public function flush () {} |
||||
|
||||
} |
||||
|
||||
/** |
||||
* Represents a connection to a set of memcache servers. |
||||
* @link https://php.net/manual/en/class.memcache.php |
||||
*/ |
||||
class Memcache extends MemcachePool { |
||||
|
||||
|
||||
/** |
||||
* (PECL memcache >= 0.4.0)<br/> |
||||
* Open memcached server persistent connection |
||||
* @link https://php.net/manual/en/memcache.pconnect.php |
||||
* @param string $host <p> |
||||
* Point to the host where memcached is listening for connections. This parameter |
||||
* may also specify other transports like unix:///path/to/memcached.sock |
||||
* to use UNIX domain sockets, in this case <i>port</i> must also |
||||
* be set to 0. |
||||
* </p> |
||||
* @param int $port [optional] <p> |
||||
* Point to the port where memcached is listening for connections. Set this |
||||
* parameter to 0 when using UNIX domain sockets. |
||||
* </p> |
||||
* @param int $timeout [optional] <p> |
||||
* Value in seconds which will be used for connecting to the daemon. Think |
||||
* twice before changing the default value of 1 second - you can lose all |
||||
* the advantages of caching if your connection is too slow. |
||||
* </p> |
||||
* @return mixed a Memcache object or <b>FALSE</b> on failure. |
||||
*/ |
||||
public function pconnect ($host, $port, $timeout = 1) {} |
||||
} |
||||
|
||||
// string $host [, int $port [, int $timeout ]] |
||||
|
||||
/** |
||||
* (PECL memcache >= 0.2.0)</br> |
||||
* Memcache::connect — Open memcached server connection |
||||
* @link https://php.net/manual/en/memcache.connect.php |
||||
* @param string $host <p> |
||||
* Point to the host where memcached is listening for connections. |
||||
* This parameter may also specify other transports like |
||||
* unix:///path/to/memcached.sock to use UNIX domain sockets, |
||||
* in this case port must also be set to 0. |
||||
* </p> |
||||
* @param int $port [optional] <p> |
||||
* Point to the port where memcached is listening for connections. |
||||
* Set this parameter to 0 when using UNIX domain sockets. |
||||
* Note: port defaults to memcache.default_port if not specified. |
||||
* For this reason it is wise to specify the port explicitly in this method call. |
||||
* </p> |
||||
* @param int $timeout [optional] <p> |
||||
* Value in seconds which will be used for connecting to the daemon. |
||||
* </p> |
||||
* @return bool Returns <b>TRUE</b> on success or <b>FALSE</b> on failure. |
||||
*/ |
||||
function memcache_connect ($host, $port, $timeout = 1) {} |
||||
|
||||
/** |
||||
* (PECL memcache >= 0.4.0) |
||||
* Memcache::pconnect — Open memcached server persistent connection |
||||
* |
||||
* @link https://php.net/manual/en/memcache.pconnect.php#example-5242 |
||||
* @param $host |
||||
* @param null $port |
||||
* @param int $timeout |
||||
* @return Memcache |
||||
*/ |
||||
function memcache_pconnect ($host, $port=null, $timeout=1) {} |
||||
|
||||
function memcache_add_server () {} |
||||
|
||||
function memcache_set_server_params () {} |
||||
|
||||
function memcache_set_failure_callback () {} |
||||
|
||||
function memcache_get_server_status () {} |
||||
|
||||
function memcache_get_version () {} |
||||
|
||||
function memcache_add () {} |
||||
|
||||
function memcache_set () {} |
||||
|
||||
function memcache_replace () {} |
||||
|
||||
function memcache_cas () {} |
||||
|
||||
function memcache_append () {} |
||||
|
||||
function memcache_prepend () {} |
||||
|
||||
function memcache_get () {} |
||||
|
||||
function memcache_delete () {} |
||||
|
||||
/** |
||||
* (PECL memcache >= 0.2.0)<br/> |
||||
* Turn debug output on/off |
||||
* @link https://php.net/manual/en/function.memcache-debug.php |
||||
* @param bool $on_off <p> |
||||
* Turns debug output on if equals to <b>TRUE</b>. |
||||
* Turns debug output off if equals to <b>FALSE</b>. |
||||
* </p> |
||||
* @return bool <b>TRUE</b> if PHP was built with --enable-debug option, otherwise |
||||
* returns <b>FALSE</b>. |
||||
*/ |
||||
function memcache_debug ($on_off) {} |
||||
|
||||
function memcache_get_stats () {} |
||||
|
||||
function memcache_get_extended_stats () {} |
||||
|
||||
function memcache_set_compress_threshold () {} |
||||
|
||||
function memcache_increment () {} |
||||
|
||||
function memcache_decrement () {} |
||||
|
||||
function memcache_close () {} |
||||
|
||||
function memcache_flush () {} |
||||
|
||||
define ('MEMCACHE_COMPRESSED', 2); |
||||
define ('MEMCACHE_USER1', 65536); |
||||
define ('MEMCACHE_USER2', 131072); |
||||
define ('MEMCACHE_USER3', 262144); |
||||
define ('MEMCACHE_USER4', 524288); |
||||
define ('MEMCACHE_HAVE_SESSION', 1); |
||||
|
||||
// End of memcache v.3.0.8 |
||||
?> |
||||
File diff suppressed because it is too large
Load Diff
@ -1,46 +1,133 @@
|
||||
|
||||
# Contributor Covenant Code of Conduct |
||||
|
||||
## Our Pledge |
||||
|
||||
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. |
||||
We as members, contributors, and leaders pledge to make participation in our |
||||
community a harassment-free experience for everyone, regardless of age, body |
||||
size, visible or invisible disability, ethnicity, sex characteristics, gender |
||||
identity and expression, level of experience, education, socio-economic status, |
||||
nationality, personal appearance, race, religion, or sexual identity |
||||
and orientation. |
||||
|
||||
We pledge to act and interact in ways that contribute to an open, welcoming, |
||||
diverse, inclusive, and healthy community. |
||||
|
||||
## Our Standards |
||||
|
||||
Examples of behavior that contributes to creating a positive environment include: |
||||
Examples of behavior that contributes to a positive environment for our |
||||
community include: |
||||
|
||||
* Using welcoming and inclusive language |
||||
* Being respectful of differing viewpoints and experiences |
||||
* Gracefully accepting constructive criticism |
||||
* Focusing on what is best for the community |
||||
* Showing empathy towards other community members |
||||
* Demonstrating empathy and kindness toward other people |
||||
* Being respectful of differing opinions, viewpoints, and experiences |
||||
* Giving and gracefully accepting constructive feedback |
||||
* Accepting responsibility and apologizing to those affected by our mistakes, |
||||
and learning from the experience |
||||
* Focusing on what is best not just for us as individuals, but for the |
||||
overall community |
||||
|
||||
Examples of unacceptable behavior by participants include: |
||||
Examples of unacceptable behavior include: |
||||
|
||||
* The use of sexualized language or imagery and unwelcome sexual attention or advances |
||||
* Trolling, insulting/derogatory comments, and personal or political attacks |
||||
* The use of sexualized language or imagery, and sexual attention or |
||||
advances of any kind |
||||
* Trolling, insulting or derogatory comments, and personal or political attacks |
||||
* Public or private harassment |
||||
* Publishing others' private information, such as a physical or electronic address, without explicit permission |
||||
* Other conduct which could reasonably be considered inappropriate in a professional setting |
||||
* Publishing others' private information, such as a physical or email |
||||
address, without their explicit permission |
||||
* Other conduct which could reasonably be considered inappropriate in a |
||||
professional setting |
||||
|
||||
## Our Responsibilities |
||||
## Enforcement Responsibilities |
||||
|
||||
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. |
||||
Community leaders are responsible for clarifying and enforcing our standards of |
||||
acceptable behavior and will take appropriate and fair corrective action in |
||||
response to any behavior that they deem inappropriate, threatening, offensive, |
||||
or harmful. |
||||
|
||||
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. |
||||
Community leaders have the right and responsibility to remove, edit, or reject |
||||
comments, commits, code, wiki edits, issues, and other contributions that are |
||||
not aligned to this Code of Conduct, and will communicate reasons for moderation |
||||
decisions when appropriate. |
||||
|
||||
## Scope |
||||
|
||||
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. |
||||
This Code of Conduct applies within all community spaces, and also applies when |
||||
an individual is officially representing the community in public spaces. |
||||
Examples of representing our community include using an official e-mail address, |
||||
posting via an official social media account, or acting as an appointed |
||||
representative at an online or offline event. |
||||
|
||||
## Enforcement |
||||
|
||||
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at contact@getgrav.org. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. |
||||
Instances of abusive, harassing, or otherwise unacceptable behavior may be |
||||
reported to the community leaders responsible for enforcement at |
||||
[INSERT CONTACT METHOD]. |
||||
All complaints will be reviewed and investigated promptly and fairly. |
||||
|
||||
All community leaders are obligated to respect the privacy and security of the |
||||
reporter of any incident. |
||||
|
||||
## Enforcement Guidelines |
||||
|
||||
Community leaders will follow these Community Impact Guidelines in determining |
||||
the consequences for any action they deem in violation of this Code of Conduct: |
||||
|
||||
### 1. Correction |
||||
|
||||
**Community Impact**: Use of inappropriate language or other behavior deemed |
||||
unprofessional or unwelcome in the community. |
||||
|
||||
**Consequence**: A private, written warning from community leaders, providing |
||||
clarity around the nature of the violation and an explanation of why the |
||||
behavior was inappropriate. A public apology may be requested. |
||||
|
||||
### 2. Warning |
||||
|
||||
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. |
||||
**Community Impact**: A violation through a single incident or series |
||||
of actions. |
||||
|
||||
**Consequence**: A warning with consequences for continued behavior. No |
||||
interaction with the people involved, including unsolicited interaction with |
||||
those enforcing the Code of Conduct, for a specified period of time. This |
||||
includes avoiding interactions in community spaces as well as external channels |
||||
like social media. Violating these terms may lead to a temporary or |
||||
permanent ban. |
||||
|
||||
### 3. Temporary Ban |
||||
|
||||
**Community Impact**: A serious violation of community standards, including |
||||
sustained inappropriate behavior. |
||||
|
||||
**Consequence**: A temporary ban from any sort of interaction or public |
||||
communication with the community for a specified period of time. No public or |
||||
private interaction with the people involved, including unsolicited interaction |
||||
with those enforcing the Code of Conduct, is allowed during this period. |
||||
Violating these terms may lead to a permanent ban. |
||||
|
||||
### 4. Permanent Ban |
||||
|
||||
**Community Impact**: Demonstrating a pattern of violation of community |
||||
standards, including sustained inappropriate behavior, harassment of an |
||||
individual, or aggression toward or disparagement of classes of individuals. |
||||
|
||||
**Consequence**: A permanent ban from any sort of public interaction within |
||||
the community. |
||||
|
||||
## Attribution |
||||
|
||||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] |
||||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], |
||||
version 2.0, available at |
||||
[https://www.contributor-covenant.org/version/2/0/code_of_conduct.html][v2.0]. |
||||
|
||||
Community Impact Guidelines were inspired by |
||||
[Mozilla's code of conduct enforcement ladder][Mozilla CoC]. |
||||
|
||||
For answers to common questions about this code of conduct, see the FAQ at |
||||
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available |
||||
at [https://www.contributor-covenant.org/translations][translations]. |
||||
|
||||
[homepage]: http://contributor-covenant.org |
||||
[version]: http://contributor-covenant.org/version/1/4/ |
||||
[homepage]: https://www.contributor-covenant.org |
||||
[v2.0]: https://www.contributor-covenant.org/version/2/0/code_of_conduct.html |
||||
[Mozilla CoC]: https://github.com/mozilla/diversity |
||||
[FAQ]: https://www.contributor-covenant.org/faq |
||||
[translations]: https://www.contributor-covenant.org/translations |
||||
|
||||
@ -0,0 +1,21 @@
|
||||
# Security Policy |
||||
|
||||
## Supported Versions |
||||
|
||||
We are focusing our security updates on the following versions |
||||
|
||||
| Version | Supported | |
||||
| ------- | ------------------ | |
||||
| 1.7.x | :white_check_mark: | |
||||
| 1.6.x | :warning: | |
||||
| < 1.6 | :x: | |
||||
|
||||
## :warning: Versions |
||||
|
||||
Versions with :warning: will be supported for security issues, however you won't be able to update to them, you will need to manually update through the [`direct-install` command](https://learn.getgrav.org/17/admin-panel/tools). |
||||
|
||||
If you cannot update to the latest stable version available because, for example, your server does not meet the minimum PHP requirements, you can manually install a previous version by downloading the package from our Releases directory (https://github.com/getgrav/grav/releases). |
||||
|
||||
## Reporting a Vulnerability |
||||
|
||||
Please contact security@getgrav.org with a detailed explaination of the security issue found and we will work with you to get it resolved as fast as possible. |
||||
@ -0,0 +1 @@
|
||||
/* @copyright Copyright (c) 2015 - 2021 Trilby Media, LLC. All rights reserved. */ |
||||
Binary file not shown.
Binary file not shown.
@ -1,4 +1,4 @@
|
||||
{ |
||||
{ |
||||
"version": 2, |
||||
"builds": [{ "src": "*.php", "use": "@now/php" }] |
||||
} |
||||
|
||||
@ -1,5 +0,0 @@
|
||||
<?php |
||||
|
||||
/** Moved from non-namespaced classes to Grav Framework */ |
||||
class_alias(Grav\Framework\Parsedown\Parsedown::class, '\Parsedown'); |
||||
class_alias(Grav\Framework\Parsedown\ParsedownExtra::class, '\ParsedownExtra'); |
||||
@ -1,70 +0,0 @@
|
||||
div.phpdebugbar { |
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
||||
} |
||||
|
||||
.phpdebugbar pre { |
||||
padding: 1rem; |
||||
} |
||||
|
||||
.phpdebugbar div.phpdebugbar-header > div > * { |
||||
padding: 5px 15px; |
||||
} |
||||
|
||||
.phpdebugbar div.phpdebugbar-header > div.phpdebugbar-header-right > * { |
||||
padding: 5px 8px; |
||||
} |
||||
|
||||
.phpdebugbar div.phpdebugbar-header, .phpdebugbar a.phpdebugbar-restore-btn { |
||||
background-image: url(grav.png); |
||||
} |
||||
|
||||
.phpdebugbar a.phpdebugbar-restore-btn { |
||||
width: 13px; |
||||
} |
||||
|
||||
.phpdebugbar a.phpdebugbar-tab.phpdebugbar-active { |
||||
background: #3DB9EC; |
||||
color: #fff; |
||||
margin-top: -1px; |
||||
padding-top: 6px; |
||||
} |
||||
|
||||
.phpdebugbar .phpdebugbar-widgets-toolbar { |
||||
border-top: 1px solid #ddd; |
||||
padding-left: 5px; |
||||
padding-right: 2px; |
||||
padding-top: 2px; |
||||
background-color: #fafafa !important; |
||||
width: auto !important; |
||||
left: 0; |
||||
right: 0; |
||||
} |
||||
|
||||
.phpdebugbar .phpdebugbar-widgets-toolbar input { |
||||
background: transparent !important; |
||||
} |
||||
|
||||
.phpdebugbar .phpdebugbar-widgets-toolbar .phpdebugbar-widgets-filter { |
||||
|
||||
} |
||||
|
||||
|
||||
.phpdebugbar input[type=text] { |
||||
padding: 0; |
||||
display: inline; |
||||
} |
||||
|
||||
.phpdebugbar dl.phpdebugbar-widgets-varlist, ul.phpdebugbar-widgets-timeline li span.phpdebugbar-widgets-label { |
||||
font-family: "DejaVu Sans Mono", Menlo, Monaco, Consolas, Courier, monospace; |
||||
font-size: 12px; |
||||
} |
||||
|
||||
ul.phpdebugbar-widgets-timeline li span.phpdebugbar-widgets-label { |
||||
text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff; |
||||
top: 0; |
||||
} |
||||
|
||||
.phpdebugbar pre, .phpdebugbar code { |
||||
margin: 0; |
||||
font-size: 14px; |
||||
} |
||||
@ -0,0 +1,2 @@
|
||||
/** Clockwork Debugger CSS **/ |
||||
.clockwork-badge{position:fixed;z-index:10;bottom:0;left:0;padding:2px 4px;background-color:#eee;border:1px solid #ccc;border-bottom:0;border-left:0;display:flex;align-items:center}.clockwork-badge:hover{width:auto}.clockwork-badge:hover:after{content:'Grav Clockwork debugger enabled. Install Clockwork Browser extension (Chrome or Firefox), open your Developer tools and then select the Clockwork tab.'}.clockwork-badge:after{margin-left:10px;font-family:Monaco,Consolas,"Lucida Console",monospace;font-size:12px;line-height:1.5;color:#666}.clockwork-badge i{display:block;float:left;height:22px;width:22px;min-width:22px;background-size:contain;background-image:url(data:image/png;base64,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)} |
||||
@ -0,0 +1,3 @@
|
||||
/** Clockwork Debugger JS **/ |
||||
document.addEventListener("DOMContentLoaded",function () { |
||||
var e=document.createElement("div");e.appendChild(document.createElement("i")),e.className="clockwork-badge",document.body.appendChild(e)}); |
||||
@ -0,0 +1,70 @@
|
||||
div.phpdebugbar { |
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
||||
} |
||||
|
||||
.phpdebugbar pre { |
||||
padding: 1rem; |
||||
} |
||||
|
||||
.phpdebugbar div.phpdebugbar-header > div > * { |
||||
padding: 5px 15px; |
||||
} |
||||
|
||||
.phpdebugbar div.phpdebugbar-header > div.phpdebugbar-header-right > * { |
||||
padding: 5px 8px; |
||||
} |
||||
|
||||
.phpdebugbar div.phpdebugbar-header, .phpdebugbar a.phpdebugbar-restore-btn { |
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAAA/1BMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeHh4AAAD///8EBAT7+/sLCwv29vYVFRUvLy/t7e3m5ubCwsKxsbE/Pz+mpqZMTEwcHBzy8vLp6emfn5+AgIA2Njbi4uLf39+rq6tzc3NWVlYhISHa2trW1tbS0tLMzMy7u7uZmZmUlJSMjIxvb29kZGRHR0c7Ozt5eXkqKiq1tbWQkJBqampbW1tSUlLHx8eHh4ckJCRDQ0M3wD42AAAAI3RSTlMA/PibTbQ0x76TVAlw4LhZLOuEYCAN9Hjx0a2ppGZEGYw97djhXHwAAATZSURBVFjDlVcHW+MwDO1eFCjj2McNOzvdpXTTXVbL/P+/5SQ7QSSX5Di1X1onfi/Sk+Q4sTDbKqWK+YuznZ2zi3wxVdqK/Zf92M1nT9gnO8rmd398GX6Z3xaoOFoiAQcx3E5efgmeSuN8F6Xg1x3G06l/wjNpMR1B0uif4EhnIuFb+0diIoFXk3IVfokisR+h52GO4JKgyjmfaMhAFNlSaPR7DpwI+lzn/E4QKIqmKIJirxCMP4izBPPZPXhgXwMBYgULw0nfg/BF5scDbslb7QeJ08yqqTEmGYoB95d4H8ETL8+n9wBqrLu6ao3bBsMwAnxISf/9BHcqxNB8Y7cWl3Zz7TAUfPrvAT6AoNEFFXvsjutL01yOuMrtBxnFXsmT/1wQHmdWAFNnI3uI48Yj0FUcHbKf62GfUfr8eeQt7Uk3mQZpZNoVRPEui5vtEz5zFEpgWnyqVBZMc6oaGNriH2hGVZ0OxEvInPeMaZWJBA7vmPbCr5jjws5HBnAUxvDMH40aCIf4G5BjRQSs8E8HFFYf8bGxgDvD55bzGhwWkoBcuIyHR/AMdaCagxXDhtL6tSqoWpd4BMnlIR+Or+rYTK/a3EAGcc6e4AWHISnWv20iCCojsHoVlQdjrMexFF2C7UMg2A2WEGWbQhXN6l3eXC6XGp4b9qxbuEB2EBGBwtocrK90cVG5mbRXm6vmx/0phq1sIAGKDgLOBiN1MrO5a9aDl+D0W6x0Ar9BCTRuIIANa90Y7LrLVRXzwVtDInCqMRWcf2bUOEAsa4wJqFowQALL9EiAtVRk8QC4OW+1pOM9jIaVASwYagyNXDj+W0NcfuZNzjtXOiL0Zzg30Llj+ptfxQs4+vBPNiL5PawFCBkgXpUaVtqGl+A8dgZHL34BcBUQrwPptToW+o37Ku+UH9eYByJIx3YkAeFnMFuGO7S5gEp7YhXxa5OOAM39RXDPXb0qmpROsswZe+twXdU55oUIZAiEv3bD1UFwIYKkmGqytPCDCwKFQCKK0yL7qtSAPX54UAbtsLuBHkb9zyLmPQSNjsSgmQwKUOIfEY8F8t4B34DvndJY9BA8tNBJq1Nev9axmaStFcQLhgYoCTo0salkIaW8OUDdWjMTR2sHPhrAFZqx6cqcKE4pl2BJJ4K6hfwvqNgAnXfKX/HU6X3Zrhnu0k7tLNZtTBRv1hkwTDBY1NzFU6doDYjJbWdQkQhWwuU7/LvhTh3SDoco4ECL4i5dwURbc8NdDZz2IwKicE8d0KIqWetLE3+lL4hvUuGSeRfVWNLfj/gpOw4smBJBkKQHCzlHGwvAj4woB1gq5NGGLSXtORBPnUQPV5/MPVkDMxbpwG7w4x0xL6Ltxka0A/4NBvV09UVk4DoSn/jl2+JQS9q9KYawisAD4CfhsZ4TH3htylsdEHARIQBusqCKyUpymycgbbkkXEXjT3z7/oKQFTFVuZD2FMJHZIDsO5x2d4aAr2jR+GLwZhtAb028/0yJ9J8dE87jQyKObcjtTXT8dH+fDuKF4/eiPwzH44wTf/yUi6wrpRIOZ9lM1EtXAifFI+CJn9+iX/t2xMQwOMth/UZbASi8btAwR9FHWSpJr75g9Oqbin3VDg+SpwlP6k6TB4ex/7JvmcJx8jydy6XPk8eFTKhyfwCgX71MSvaBHgAAAABJRU5ErkJggg==); |
||||
} |
||||
|
||||
.phpdebugbar a.phpdebugbar-restore-btn { |
||||
width: 13px; |
||||
} |
||||
|
||||
.phpdebugbar a.phpdebugbar-tab.phpdebugbar-active { |
||||
background: #3DB9EC; |
||||
color: #fff; |
||||
margin-top: -1px; |
||||
padding-top: 6px; |
||||
} |
||||
|
||||
.phpdebugbar .phpdebugbar-widgets-toolbar { |
||||
border-top: 1px solid #ddd; |
||||
padding-left: 5px; |
||||
padding-right: 2px; |
||||
padding-top: 2px; |
||||
background-color: #fafafa !important; |
||||
width: auto !important; |
||||
left: 0; |
||||
right: 0; |
||||
} |
||||
|
||||
.phpdebugbar .phpdebugbar-widgets-toolbar input { |
||||
background: transparent !important; |
||||
} |
||||
|
||||
.phpdebugbar .phpdebugbar-widgets-toolbar .phpdebugbar-widgets-filter { |
||||
|
||||
} |
||||
|
||||
|
||||
.phpdebugbar input[type=text] { |
||||
padding: 0; |
||||
display: inline; |
||||
} |
||||
|
||||
.phpdebugbar dl.phpdebugbar-widgets-varlist, ul.phpdebugbar-widgets-timeline li span.phpdebugbar-widgets-label { |
||||
font-family: "DejaVu Sans Mono", Menlo, Monaco, Consolas, Courier, monospace; |
||||
font-size: 12px; |
||||
} |
||||
|
||||
ul.phpdebugbar-widgets-timeline li span.phpdebugbar-widgets-label { |
||||
text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff; |
||||
top: 0; |
||||
} |
||||
|
||||
.phpdebugbar pre, .phpdebugbar code { |
||||
margin: 0; |
||||
font-size: 14px; |
||||
} |
||||
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 1.6 KiB |
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,8 @@
|
||||
title: Flex User Accounts |
||||
description: Manage your User Accounts in Flex. |
||||
type: flex-objects |
||||
|
||||
# Deprecated in Grav 1.7.0-rc.4: file was renamed to user-accounts.yaml |
||||
extends@: |
||||
type: user-accounts |
||||
context: blueprints://flex |
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue