Home
last modified time | relevance | path

Searched refs:cache_name_function (Results 1 – 2 of 2) sorted by last modified time

/dokuwiki/vendor/simplepie/simplepie/src/
H A DSanitize.php81 public $cache_name_function = 'md5'; variable in SimplePie\\Sanitize
136 public function pass_cache_data($enable_cache = true, $cache_location = './cache', $cache_name_function = 'md5', $cache_class = 'SimplePie\Cache', DataCache $cache = null) argument
146 if (! is_string($cache_name_function) && ! is_object($cache_name_function) && ! $cache_name_function instanceof NameFilter) {
148 '%s(): Argument #3 ($cache_name_function) must be of type %s',
154 // BC: $cache_name_function could be a callable as string
155 if (is_string($cache_name_function)) {
156 // trigger_error(sprintf('Providing $cache_name_function as string in "%s()" is deprecated since SimplePie 1.8.0, provide as "%s" instead.', __METHOD__, NameFilter::class), \E_USER_DEPRECATED);
157 $this->cache_name_function
[all...]
H A DSimplePie.php558 public $cache_name_function = 'md5'; variable in SimplePie\\SimplePie
700 $this->set_cache_namefilter(new CallableNameFilter($this->cache_name_function));
1328 $this->cache_name_function = $function;
1330 $this->set_cache_namefilter(new CallableNameFilter($this->cache_name_function));