Home
last modified time | relevance | path

Searched refs:defaults (Results 1 – 25 of 395) sorted by relevance

12345678910>>...16

/plugin/gallery/
H A DGalleryNode.php38 $defaults = $action->getDefaults();
41 if ($attrs['thumbnailsize'] !== $defaults['thumbnailsize']) {
44 if ($attrs['imagesize'] !== $defaults['imagesize']) {
48 $query[] = $this->extractFlagParam('showname', $attrs, $defaults);
49 $query[] = $this->extractFlagParam('showtitle', $attrs, $defaults);
50 $query[] = $this->extractFlagParam('cache', $attrs, $defaults);
51 $query[] = $this->extractFlagParam('crop', $attrs, $defaults);
52 $query[] = $this->extractFlagParam('direct', $attrs, $defaults);
53 $query[] = $this->extractFlagParam('lightbox', $attrs, $defaults);
54 $query[] = $this->extractFlagParam('reverse', $attrs, $defaults);
96 extractFlagParam($paramName, $data, $defaults) global() argument
[all...]
/plugin/behave/
H A Dbehave.js86 var defaults = { class
118 var theEditor = defaults.textarea,
194 defaults.textarea.focus();
261 defaults.textarea.value = data;
265 if(typeof defaults.fence == "string"){
531 defaults.textarea.value = edited;
576 … if(defaults.replaceTab){ utils.addEvent(defaults.textarea, 'keydown', intercept.tabKey); }
577 … if(defaults.autoIndent){ utils.addEvent(defaults.textarea, 'keydown', intercept.enterKey); }
578 … if(defaults.autoStrip){ utils.addEvent(defaults.textarea, 'keydown', intercept.deleteKey); }
590 utils.deepExtend(defaults, opts);
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/
H A DCLI.php281 $defaults['standard'] = null;
282 $defaults['verbosity'] = 0;
292 $defaults['reportFile'] = null;
293 $defaults['generator'] = '';
296 $defaults['errorSeverity'] = null;
297 $defaults['warningSeverity'] = null;
299 $defaults['stdinPath'] = '';
308 $defaults['tabWidth'] = 0;
361 $defaults['quiet'] = false;
368 $defaults['colors'] = false;
[all …]
/plugin/imapmarkers/
H A Dscript.js9 var defaults = { class in globalThis
111 defaults: defaults,
165 … if (_g.defaults['debug']) { console.log("RESIZE::[" + index + "] LAST CLICKED ID=" + id); }
168 … if (_g.defaults['debug']) { console.log("RESIZE::[" + index + "] AREA-INDEX=" + area_index); }
196 if (_g.defaults['debug']) { console.log("imapmarkers::START IMAGEMAPPING MARKER"); }
201 if (_g.defaults['debug']) { console.log("imapmarkers::GIVE UP IMAGEMAPPING SEARCH"); }
210 if (_g.defaults['debug']) { console.log("NOT FOUND: img.mapster_el => INIT"); }
212 if (_g.defaults['debug']) { console.log("FOUND: img.mapster_el"); }
344 $("path", $(marker_id_jquery)).attr("style", "fill:" + _g.defaults['marker_color']);
352 … if (_g.defaults['debug']) { console.log("[" + index + "] ADD MARKER ID='" + marker_id + "'"); }
[all …]
/plugin/include/
H A Dhelper.php15 var $defaults = array(); variable in helper_plugin_include
25 $this->defaults['noheader'] = $this->getConf('noheader');
26 $this->defaults['firstsec'] = $this->getConf('firstseconly');
27 $this->defaults['editbtn'] = $this->getConf('showeditbtn');
28 $this->defaults['taglogos'] = $this->getConf('showtaglogos');
29 $this->defaults['footer'] = $this->getConf('showfooter');
30 $this->defaults['redirect'] = $this->getConf('doredirect');
31 $this->defaults['date'] = $this->getConf('showdate');
32 $this->defaults['mdate'] = $this->getConf('showmdate');
33 $this->defaults['use
[all...]
/plugin/bez/mdl/
H A DTask_comment.php31 public function __construct($model, $defaults=array()) { argument
32 parent::__construct($model, $defaults);
46 if (!isset($defaults['task'])) {
47 throw new \Exception('$defaults[task] not set');
49 $this->task = $defaults['task'];
58 if (isset($defaults['task']) && $this->task_id == $defaults['task']->id) {
59 $this->task = $defaults['task'];
H A DThread_comment.php41 //defaults: isssue, type
42 public function __construct($model, $defaults=array()) { argument
43 parent::__construct($model, $defaults);
60 if (!isset($defaults['thread'])) {
61 throw new \Exception('$defaults[thread] not set');
63 $this->thread = $defaults['thread'];
73 if (isset($defaults['thread']) && $this->thread_id == $defaults['thread']->id) {
74 $this->thread = $defaults['thread'];
H A DTask.php86 public function __construct($model, $defaults=array()) { argument
87 parent::__construct($model, $defaults);
111 if (isset($defaults['thread'])) {
112 $this->thread = $defaults['thread'];
122 if (isset($defaults['thread_comment'])) {
123 $this->thread_comment = $defaults['thread_comment'];
176 if (isset($defaults['thread']) && $this->thread_id == $defaults['thread']->id) {
177 $this->thread = $defaults['thread'];
180 if (isset($defaults['thread_commen
[all...]
/plugin/syntaxhighlighter3/sxh3/src/js/
H A DshLegacy.js44 defaults = SyntaxHighlighter.defaults
50 showGutter = asString(defaultValue(showGutter, defaults.gutter));
51 showControls = asString(defaultValue(showControls, defaults.toolbar));
52 collapseAll = asString(defaultValue(collapseAll, defaults.collapse));
53 showColumns = asString(defaultValue(showColumns, defaults.ruler));
54 firstLine = asString(defaultValue(firstLine, defaults['first-line']));
/plugin/syntaxhighlighter3/sxh3/pkg/scripts/
H A DshLegacy.js60 defaults = SyntaxHighlighter.defaults
66 showGutter = asString(defaultValue(showGutter, defaults.gutter));
67 showControls = asString(defaultValue(showControls, defaults.toolbar));
68 collapseAll = asString(defaultValue(collapseAll, defaults.collapse));
69 showColumns = asString(defaultValue(showColumns, defaults.ruler));
70 firstLine = asString(defaultValue(firstLine, defaults['first-line']));
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DClient.php233 $defaults = [
248 $defaults['proxy']['http'] = getenv('HTTP_PROXY');
252 $defaults['proxy']['https'] = $proxy;
257 $defaults['proxy']['no'] = explode(',', $cleanedNoProxy);
260 $this->config = $config + $defaults;
289 $defaults = $this->config;
291 if (!empty($defaults['headers'])) {
293 $defaults['_conditional'] = $defaults['headers'];
294 unset($defaults['headers']);
302 $defaults['_conditional'] = [];
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/
H A DDocument.php101 $defaults = isset($args[1]) ? $args[1] : true;
105 $defaults = isset($args[2]) ? $args[2] : true;
107 parent::__construct($this, $name, $children, $defaults);
156 * @param bool $defaults
160 public function createComponent($name, array $children = null, $defaults = true) argument
172 return new $class($this, $name, $children, $defaults);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Config/
H A DFontVariables.php8 private $defaults; variable in Mpdf\\Config\\FontVariables
12 $this->defaults = [
329 return $this->defaults;
H A DConfigVariables.php13 private $defaults;
18 $this->defaults = [
526 return $this->defaults;
15 private $defaults; global() variable in Mpdf\\Config\\ConfigVariables
/plugin/mediasyntax/
H A Dhelper.php17 public $defaults = array();
26 $this->defaults['firstsec'] = $this->getConf('firstseconly');
27 $this->defaults['editbtn'] = $this->getConf('showeditbtn');
28 $this->defaults['taglogos'] = $this->getConf('showtaglogos');
29 $this->defaults['footer'] = $this->getConf('showfooter');
30 $this->defaults['redirect'] = $this->getConf('doredirect');
31 $this->defaults['date'] = $this->getConf('showdate');
32 $this->defaults['user'] = $this->getConf('showuser');
33 $this->defaults['comments'] = $this->getConf('showcomments');
34 $this->defaults['linkback
24 var $defaults = array(); global() variable in helper_plugin_mediasyntax
[all...]
/plugin/batchedit/
H A Dconfig.php16 private static $defaults = array( variable in BatcheditConfig
52 return array_merge(self::$defaults, $this->config);
63 if (array_key_exists($id, self::$defaults)) {
64 return self::$defaults[$id];
/plugin/settingstree/
H A Dhelper.php185 function registerSettings($pluginname,$version,$meta,$defaults){ argument
188 …!file_put_contents($file = DOKU_SETTINGS_DIR."/{$pluginname}.defaults.json",json_encode($defaults))
196 $c->set("plugin_settringstree_settingsdefaults_{$pluginname}",$defaults,$TTL);
209 if (!$c || !($defaults = $c->get("plugin_settringstree_settingsdefaults_{$pluginname}"))){
210 …$defaults = json_decode(@file_get_contents($file = DOKU_SETTINGS_DIR."/{$pluginname}.defaults.json…
212 if (!is_array($defaults)){
219 …$this->_settingsHierarchy[$pluginname] = new settingshierarchy($pluginname,$meta,$defaults,$values…
/plugin/userimportextended/
H A Dadmin.php19 protected $defaults = ['email', 'name', 'password', 'groups']; variable in admin_plugin_userimportextended
154 foreach ($this->defaults as $field) {
159 $this->defaults[$field] = $_REQUEST['defaults'][$field];
163 $this->defaults[$field] .= ',user';
249 $candidate[1] = $this->defaults['password'];
252 $candidate[2] = $this->defaults['name'];
255 $candidate[3] = $this->defaults['email'];
258 $candidate[4] = $this->defaults['groups'];
/plugin/indexmenu/syntax/
H A Dindexmenu.php88 $defaults = explode(' ', $defaultsStr);
97 $context = $this->hasOption($defaults, $opts, 'context');
137 $nocookie = $context || $this->hasOption($defaults, $opts, 'nocookie');
140 $noscroll = $this->hasOption($defaults, $opts, 'noscroll');
142 $navbar = $this->hasOption($defaults, $opts, 'navbar');
144 $nons = $this->hasOption($defaults, $opts, 'nons');
146 $nopg = $this->hasOption($defaults, $opts, 'nopg');
148 $notoc = $this->hasOption($defaults, $opts, 'notoc');
150 $nomenu = $this->hasOption($defaults, $opts, 'nomenu');
152 $tsort = $this->hasOption($defaults,
[all...]
/plugin/revealjs/plugin/math/
H A Dmath.js23 function defaults( options, defaultOptions ) { function
65 defaults( options, defaultOptions );
66 defaults( options.tex2jax, defaultOptions.tex2jax );
/plugin/davcard/vendor/sabre/vobject/lib/
H A DComponent.php47 * @param bool $defaults
50 function __construct(Document $root, $name, array $children = array(), $defaults = true) { argument
55 if ($defaults) {
526 $defaults = $this->getDefaults();
557 if ($options & self::REPAIR && isset($defaults[$propName])) {
558 $this->add($propName, $defaults[$propName]);
H A DDocument.php161 * @param bool $defaults
164 public function createComponent($name, array $children = null, $defaults = true) { argument
173 return new $class($this, $name, $children, $defaults);
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DComponent.php47 * @param bool $defaults
50 function __construct(Document $root, $name, array $children = array(), $defaults = true) { argument
55 if ($defaults) {
526 $defaults = $this->getDefaults();
557 if ($options & self::REPAIR && isset($defaults[$propName])) {
558 $this->add($propName, $defaults[$propName]);
/plugin/davcal/vendor/sabre/vobject/lib/
H A DComponent.php47 * @param bool $defaults
50 function __construct(Document $root, $name, array $children = array(), $defaults = true) { argument
55 if ($defaults) {
526 $defaults = $this->getDefaults();
557 if ($options & self::REPAIR && isset($defaults[$propName])) {
558 $this->add($propName, $defaults[$propName]);
/plugin/icalevents/vendor/sabre/vobject/lib/
H A DDocument.php162 * @param bool $defaults
166 function createComponent($name, array $children = null, $defaults = true) { argument
175 return new $class($this, $name, $children, $defaults);

12345678910>>...16