Home
last modified time | relevance | path

Searched refs:config (Results 1 – 25 of 1186) sorted by relevance

12345678910>>...48

/plugin/virtualgroup/
DVirtualGroups.php18 $config = $this->loadConfig();
19 ksort($config);
20 return $config;
31 $config = $this->loadConfig();
32 return $config[$user] ?? [];
43 $config = $this->loadConfig();
45 foreach ($config as $user => $groups) {
61 $config = $this->loadConfig();
63 foreach ($config as $user => $usergroups) {
85 $config = $this->loadConfig();
[all …]
/plugin/jplayer/vendor/happyworm/jplayer/src/javascript/add-on/
Djquery.jplayer.inspector.js32 var config = $.extend({}, $.jPlayerInspector.defaults, options);
33 $(this).data("jPlayerInspector", config);
35 config.id = $(this).attr("id");
36 config.jPlayerId = config.jPlayer.attr("id");
38 config.windowId = config.idPrefix + "window_" + $.jPlayerInspector.i;
39 config.statusId = config.idPrefix + "status_" + $.jPlayerInspector.i;
40 config.configId = config.idPrefix + "config_" + $.jPlayerInspector.i;
41 config.toggleId = config.idPrefix + "toggle_" + $.jPlayerInspector.i;
42 config.eventResetId = config.idPrefix + "event_reset_" + $.jPlayerInspector.i;
43 config.updateId = config.idPrefix + "update_" + $.jPlayerInspector.i;
[all …]
/plugin/jplayer/vendor/happyworm/jplayer/dist/add-on/
Djquery.jplayer.inspector.js32 var config = $.extend({}, $.jPlayerInspector.defaults, options);
33 $(this).data("jPlayerInspector", config);
35 config.id = $(this).attr("id");
36 config.jPlayerId = config.jPlayer.attr("id");
38 config.windowId = config.idPrefix + "window_" + $.jPlayerInspector.i;
39 config.statusId = config.idPrefix + "status_" + $.jPlayerInspector.i;
40 config.configId = config.idPrefix + "config_" + $.jPlayerInspector.i;
41 config.toggleId = config.idPrefix + "toggle_" + $.jPlayerInspector.i;
42 config.eventResetId = config.idPrefix + "event_reset_" + $.jPlayerInspector.i;
43 config.updateId = config.idPrefix + "update_" + $.jPlayerInspector.i;
[all …]
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/
DSerializer.php8 * @param HTMLPurifier_Config $config
11 public function add($def, $config) argument
16 $file = $this->generateFilePath($config);
20 if (!$this->_prepareDir($config)) {
23 return $this->_write($file, serialize($def), $config);
28 * @param HTMLPurifier_Config $config
31 public function set($def, $config) argument
36 $file = $this->generateFilePath($config);
37 if (!$this->_prepareDir($config)) {
40 return $this->_write($file, serialize($def), $config);
[all …]
DDecorator.php47 * @param HTMLPurifier_Config $config
50 public function add($def, $config) argument
52 return $this->cache->add($def, $config);
57 * @param HTMLPurifier_Config $config
60 public function set($def, $config) argument
62 return $this->cache->set($def, $config);
67 * @param HTMLPurifier_Config $config
70 public function replace($def, $config) argument
72 return $this->cache->replace($def, $config);
76 * @param HTMLPurifier_Config $config
[all …]
DNull.php11 * @param HTMLPurifier_Config $config
14 public function add($def, $config) argument
21 * @param HTMLPurifier_Config $config
24 public function set($def, $config) argument
31 * @param HTMLPurifier_Config $config
34 public function replace($def, $config) argument
40 * @param HTMLPurifier_Config $config
43 public function remove($config) argument
49 * @param HTMLPurifier_Config $config
52 public function get($config) argument
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/Driver/
DYamlDriver.php46 $config = Yaml::parse(file_get_contents($file));
48 if (!isset($config[$name = $class->name])) {
52 $config = $config[$name];
60 …$exclusionPolicy = isset($config['exclusion_policy']) ? strtoupper($config['exclusion_policy']) : …
61 $excludeAll = isset($config['exclude']) ? (bool) $config['exclude'] : false;
62 $classAccessType = $config['access_type'] ?? PropertyMetadata::ACCESS_TYPE_PROPERTY;
63 $readOnlyClass = isset($config['read_only']) ? (bool) $config['read_only'] : false;
64 $this->addClassProperties($metadata, $config);
67 if (array_key_exists('virtual_properties', $config)) {
68 foreach ($config['virtual_properties'] as $methodName => $propertySettings) {
[all …]
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/
DDefinitionCache.php29 * @param HTMLPurifier_Config $config Instance of HTMLPurifier_Config
32 public function generateKey($config) argument
34 return $config->version . ',' . // possibly replace with function calls
35 $config->getBatchSerial($this->type) . ',' .
36 $config->get($this->type . '.DefinitionRev');
43 * @param HTMLPurifier_Config $config Instance of HTMLPurifier_Config to test against
46 public function isOld($key, $config) argument
52 $compare = version_compare($version, $config->version);
58 if ($hash == $config->getBatchSerial($this->type) &&
59 $revision < $config->get($this->type . '.DefinitionRev')) {
[all …]
DLexer.php70 * @param HTMLPurifier_Config $config
74 public static function create($config) argument
76 if (!($config instanceof HTMLPurifier_Config)) {
77 $lexer = $config;
85 $lexer = $config->get('Core.LexerImpl');
89 $config->get('Core.MaintainLineNumbers') ||
90 $config->get('Core.CollectErrors');
177 public function parseText($string, $config) { argument
178 return $this->parseData($string, false, $config);
181 public function parseAttr($string, $config) { argument
[all …]
DURIDefinition.php42 public function addFilter($filter, $config) argument
44 $r = $filter->prepare($config);
53 protected function doSetup($config) argument
55 $this->setupMemberVariables($config);
56 $this->setupFilters($config);
59 protected function setupFilters($config) argument
63 $this->addFilter($filter, $config);
65 $conf = $config->get('URI.' . $name);
67 $this->addFilter($filter, $config);
74 protected function setupMemberVariables($config) argument
[all …]
/plugin/authgooglesheets/vendor/google/apiclient/src/
DClient.php82 private $config; variable in Google\\Client
106 * @param array $config
108 public function __construct(array $config = array()) argument
110 $this->config = array_merge(
180 $config
183 if (!is_null($this->config['credentials'])) {
184 if ($this->config['credentials'] instanceof CredentialsLoader) {
185 $this->credentials = $this->config['credentials'];
187 $this->setAuthConfig($this->config['credentials']);
189 unset($this->config['credentials']);
[all …]
/plugin/betadoku/src/
Dserver.php57 $config = json_decode( variable
65 $config->memcached->server->host,
66 $config->memcached->server->port,
67 $config->memcached->server->host.
68 $config->memcached->server->port,
69 $config->memcached->server->timeout
93 'host' => $config->manticore->server->host,
94 'port' => $config->manticore->server->port,
100 $config->manticore->index->document->name
119 (array) $config->manticore->index->document->settings
[all …]
/plugin/zotero/
DZoteroConfig.php11 protected $config = array(); variable in ZoteroConfig
25 …if (!isset($this->config['WikiOutput']['parentheses']) || $this->config['WikiOutput']['parentheses…
27 $this->config['WikiOutput']['parentheses'] = ",";
30 …if (!isset($this->config['SourceEntries']['authorFormat']) || $this->config['SourceEntries']['auth…
32 $this->config['SourceEntries']['authorFormat'] = "LASTNAME, FIRSTNAME";
34 …if (!isset($this->config['WikiOutput']['titleFormat']) || $this->config['WikiOutput']['titleFormat…
36 $this->config['WikiOutput']['titleFormat'] = "AUTHOR: TITLE (DATE)";
42 …return isset($this->config['ZoteroAccess']['username']) && $this->config['ZoteroAccess']['username…
47 …return isset($this->config['ZoteroAccess']['key']) && $this->config['ZoteroAccess']['key'] != "" &…
52 …return isset($this->config['ZoteroAccess']['autoupdate']) && $this->config['ZoteroAccess']['autoup…
[all …]
/plugin/scrape/vendor/ezyang/htmlpurifier/library/
DHTMLPurifier.php72 public $config; variable in HTMLPurifier
107 * @param HTMLPurifier_Config|mixed $config Optional HTMLPurifier_Config object
114 public function __construct($config = null) argument
116 $this->config = HTMLPurifier_Config::create($config);
139 * @param HTMLPurifier_Config $config Config object for this operation,
146 public function purify($html, $config = null) argument
149 $config = $config ? HTMLPurifier_Config::create($config) : $this->config;
153 $lexer = HTMLPurifier_Lexer::create($config);
158 $this->generator = new HTMLPurifier_Generator($config, $context);
162 if ($config->get('Core.CollectErrors')) {
[all …]
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/
DCleanup.php24 * @param HTMLPurifier_Config $config
27 public function add($def, $config) argument
29 $status = parent::add($def, $config);
31 parent::cleanup($config);
38 * @param HTMLPurifier_Config $config
41 public function set($def, $config) argument
43 $status = parent::set($def, $config);
45 parent::cleanup($config);
52 * @param HTMLPurifier_Config $config
55 public function replace($def, $config) argument
[all …]
DMemory.php30 * @param HTMLPurifier_Config $config
33 public function add($def, $config) argument
35 $status = parent::add($def, $config);
37 $this->definitions[$this->generateKey($config)] = $def;
44 * @param HTMLPurifier_Config $config
47 public function set($def, $config) argument
49 $status = parent::set($def, $config);
51 $this->definitions[$this->generateKey($config)] = $def;
58 * @param HTMLPurifier_Config $config
61 public function replace($def, $config) argument
[all …]
DTemplate.php.in26 * @param HTMLPurifier_Config $config
29 public function add($def, $config) argument
31 return parent::add($def, $config);
36 * @param HTMLPurifier_Config $config
39 public function set($def, $config) argument
41 return parent::set($def, $config);
46 * @param HTMLPurifier_Config $config
49 public function replace($def, $config) argument
51 return parent::replace($def, $config);
55 * @param HTMLPurifier_Config $config
[all …]
/plugin/pureldap/classes/
DClient.php23 protected $config; variable in dokuwiki\\plugin\\pureldap\\classes\\Client
39 * @param array $config
41 public function __construct($config) argument
45 $this->config = $this->prepareConfig($config);
47 $this->ldap = new LdapClient($this->config);
53 * @param array $config
56 protected function prepareConfig($config) argument
64 $config = array_merge($defaults, $config);
67 if (!$config['port']) {
68 $config['port'] = ($config['encryption'] === 'ssl') ? 636 : 389;
[all …]
/plugin/odt/helper/
Dconfig.php19 protected $config = array(); variable in helper_plugin_odt_config
107 $this->config ['dformat'] =
116 $this->config ['useheading'] =
125 $this->config ['tmpdir'] =
134 $this->config ['mediadir'] =
143 $this->config ['datadir'] =
152 $this->config ['savedir'] =
161 $this->config ['showexportbutton'] =
170 $this->config ['showpdfexportbutton'] =
179 $this->config ['tpl_dir'] =
[all …]
/plugin/struct/meta/
DConfigParser.php16 protected $config = [ variable in dokuwiki\\plugin\\struct\\meta\\ConfigParser
59 … $this->config['schemas'] = array_merge($this->config['schemas'], $this->parseSchema($val));
65 $this->config['cols'] = $this->parseValues($val);
68 $this->config['sepbyheaders'] = (bool)$val;
73 $this->config['headers'] = $this->parseValues($val);
76 $this->config['align'] = $this->parseAlignments($val);
80 $this->config['widths'] = $this->parseWidths($val);
83 $this->config['min'] = abs((int)$val);
87 $this->config['limit'] = abs((int)$val);
93 $this->config['sort'] = array_merge($this->config['sort'], $sorts);
[all …]
/plugin/struct/syntax/
Dglobal.php43 $config = parent::handle($match, $state, $pos, $handler);
44 if (is_null($config)) return null;
47 $config['cols'] = $config['cols'] ?: ['*']; // optional columns definition
48 …if (isset($config['rownumbers'])) unset($config['rownumbers']); // this annoying to update dynamic…
49 return $config;
55 * @param array $config
58 protected function addTypeFilter($config) argument
60 $config['filter'][] = [
64 $config['filter'][] = ['%pageid%', '=*', '^(?![\s\S])', 'AND'];
65 $config['withpid'] = 0; // flag for the editor to distinguish data types
[all …]
Dtable.php78 $config = $parser->getConfig();
79 $this->checkForInvalidOptions($config);
80 return $config;
93 * @param array $config The parsed config data from the handler() function
96 public function render($format, Doku_Renderer $renderer, $config) argument
101 if (!$config) return false;
102 $config = $this->addTypeFilter($config); // add type specific filters
112 $search = $this->getSearchConfig($config);
144 * @param array $config
147 protected function getSearchConfig($config) argument
[all …]
/plugin/struct/types/
DPage.php20 protected $config = [ variable in dokuwiki\\plugin\\struct\\types\\Page
39 if ($this->config['usetitles']) {
75 if (PhpString::strlen($lookup) < $this->config['autocomplete']['mininput']) return [];
78 $max = $this->config['autocomplete']['maxresult'];
81 $data = ft_pageLookup($lookup, true, $this->config['usetitles']);
84 $filter = $this->config['autocomplete']['filter'];
93 if ($this->config['usetitles']) {
126 if (!$this->config['usetitles']) {
145 if (!$this->config['usetitles']) {
164 if ($this->config['usetitles']) {
[all …]
/plugin/refnotes/
Dadmin.css1 div#refnotes-config div#config__manager div.cleared {
11 div#refnotes-config div#config__manager div.info {
15 div#refnotes-config div#config__manager div.success {
19 div#refnotes-config div#config__manager div.error {
23 div#refnotes-config div#config__manager td.list {
29 div#refnotes-config div#config__manager select.list {
36 div#refnotes-config div#config__manager td.lean-label {
41 div#refnotes-config div#config__manager td.value {
46 div#refnotes-config div#config__manager td.value div.input {
50 div#refnotes-config div#config__manager td.value select {
[all …]
/plugin/rater/scripts/
Djquery.tablesorter.js157 if (table.config.debug) {
178 } else if ((table.config.headers[i] && table.config.headers[i].sorter)) {
180 p = getParserById(table.config.headers[i].sorter);
187 if (table.config.debug) {
195 if (table.config.debug) {
211 nodeValue = trimAndGetNodeText(table.config, node);
212 if (table.config.debug) {
232 function trimAndGetNodeText(config, node) { argument
233 return $.trim(getElementText(config, node));
250 if (table.config.debug) {
[all …]

12345678910>>...48