| /plugin/authssocas/ |
| H A D | auth.php | 75 if ($this->getOption("samlValidate")) { 79 if ($this->getOption("debug")) { 95 $this->getOption('server'), 96 (int)$this->getOption('port'), 97 $this->getOption('rootcas'), 109 if ($this->getOption('cacert')) { 110 if (!io_saveFile($cas_cacert_file, $this->getOption('cacert'))) { 119 if ($this->getOption('handlelogoutrequest')) { 120 phpCAS::handleLogoutRequests(true, $this->getOption('handlelogoutrequestTrustedHosts')); 134 private function getOption($optionName): mixed function in auth_plugin_authssocas [all …]
|
| /plugin/sequencediagram/bower_components/lodash/test/ |
| D | saucelabs.js | 65 var advisor = getOption('advisor', false), 66 build = getOption('build', (env.TRAVIS_COMMIT || '').slice(0, 10)), 67 commandTimeout = getOption('commandTimeout', 90), 68 compatMode = getOption('compatMode', null), 69 customData = Function('return {' + getOption('customData', '').replace(/^\{|}$/g, '') + '}')(), 70 deviceOrientation = getOption('deviceOrientation', 'portrait'), 71 framework = getOption('framework', 'qunit'), 72 idleTimeout = getOption('idleTimeout', 60), 73 jobName = getOption('name', 'unit tests'), 74 maxDuration = getOption('maxDuration', 180), [all …]
|
| /plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/Renderer/Inline/ |
| H A D | NewlineRenderer.php | 36 return $DWRenderer->getOption('hard_break', true); 39 return $DWRenderer->getOption('soft_break');
|
| /plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/Renderer/Block/ |
| H A D | BlockQuoteRenderer.php | 44 return '>' . $DWRenderer->getOption('inner_separator'); 47 return '>' . $filling . $DWRenderer->getOption('inner_separator');
|
| H A D | ParagraphRenderer.php | 40 return $result . $DWRenderer->getOption('inner_separator',);;
|
| /plugin/diagramsnet/lib/math/extensions/a11y/ |
| D | explorer.js | 34 getOption: function(e) { 111 h.getOption("speech") && n.Update(this.inner, e); 157 …h.getOption("speech") && (n.announced = !0, MathJax.Ajax.Styles(n.styles), e = n.Create("polite"), 217 }), h.getOption("speech") && u.AddSpeech(t))); 283 color: h.getOption("background"), 286 color: h.getOption("foreground"), 304 …"none" !== h.getOption("highlight") && ("hover" === h.getOption("highlight") && (t = e.currentTarg… 311 …if ("flame" === h.getOption("highlight")) return u.GetHighlighter(.05), u.highlighter.highlightAll… 328 …var a = h.getOption("speech"), i = h.getOption("walker") ? u.Walkers[MathJax.Hub.config.explorer.w… 335 …ribute("hasspeech") && u.AddSpeechLazy(e), u.walker.activate(), a && (h.getOption("subtitle") && u…
|
| /plugin/zip/pear/File/Archive/Writer/ |
| D | Gzip.php | 71 $compressionLevel = File_Archive::getOption('gzCompressionLevel', 9); 99 $this->tmpName = tempnam(File_Archive::getOption('tmpDirectory'), 'far');
|
| D | Zip.php | 71 $this->compressionLevel = File_Archive::getOption('zipCompressionLevel', 9); 191 $cache = File_Archive::getOption('cache', null);
|
| D | Bzip2.php | 97 $this->tmpName = tempnam(File_Archive::getOption('tmpDirectory'), 'far');
|
| /plugin/elasticsearch/vendor/ruflin/elastica/src/ |
| D | Scroll.php | 195 $this->_options[0] = $this->_search->getOption(Search::OPTION_SCROLL); 199 $this->_options[1] = $this->_search->getOption(Search::OPTION_SCROLL_ID); 204 … $this->_options[2] = $this->_search->getOption(Search::OPTION_SEARCH_IGNORE_UNAVAILABLE);
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/FirebaseDynamicLinks/ |
| D | Suffix.php | 55 public function getOption() function in Google\\Service\\FirebaseDynamicLinks\\Suffix
|
| /plugin/combo/vendor/symfony/yaml/Command/ |
| H A D | LintCommand.php | 95 $excludes = $input->getOption('exclude'); 96 $this->format = $input->getOption('format'); 97 $flags = $input->getOption('parse-tags');
|
| /plugin/indexmenu/syntax/ |
| D | indexmenu.php | 168 } elseif ($value = $this->getOption($defaultsStr, $optsStr, '/msort#(\S+)/u')) { 220 $gen_id = $this->getOption($defaultsStr, $optsStr, '/id#(\S+)/u'); 224 … if ($matched_lvl_sublvl = $this->getOption($defaultsStr, $optsStr, $matchPattern, true)) { 237 if ($maxjs_lvl = $this->getOption($defaultsStr, $optsStr, '/maxjs#(\d+)/u')) { 376 … private function getOption($defaultsString, $optsString, $matchPattern, $multipleMatches = false) function in syntax_plugin_indexmenu_indexmenu
|
| /plugin/findologicxmlexport/vendor/hoa/ustring/Bin/ |
| D | Fromcode.php | 74 while (false !== $c = $this->getOption($v)) {
|
| D | Tocode.php | 74 while (false !== $c = $this->getOption($v)) {
|
| /plugin/zip/pear/File/Archive/Reader/ |
| D | Cache.php | 61 $bufferSize = File_Archive::getOption('blockSize'); 152 $blockSize = File_Archive::getOption('blockSize');
|
| D | File.php | 193 $blockSize = File_Archive::getOption('blockSize');
|
| D | Gzip.php | 86 $this->tmpName = tempnam(File_Archive::getOption('tmpDirectory'), 'far');
|
| /plugin/findologicxmlexport/vendor/symfony/yaml/Command/ |
| D | LintCommand.php | 86 $this->format = $input->getOption('format'); 88 $flags = $input->getOption('parse-tags') ? Yaml::PARSE_CUSTOM_TAGS : 0;
|
| /plugin/findologicxmlexport/vendor/hoa/protocol/Bin/ |
| D | Resolve.php | 80 while (false !== $c = $this->getOption($v)) {
|
| /plugin/findologicxmlexport/vendor/hoa/math/Bin/ |
| D | Calc.php | 73 while (false !== $c = $this->getOption($v)) {
|
| /plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/ |
| H A D | DWRenderer.php | 60 public function getOption(string $option, bool $getCommonmarkOption = false) function in Dokuwiki\\Plugin\\Commonmark\\DWRenderer
|
| /plugin/zip/pear/File/ |
| D | Archive.php | 140 function getOption($name) function in File_Archive 463 $cacheCondition = File_Archive::getOption('cacheCondition'); 569 $cacheCondition = File_Archive::getOption('cacheCondition'); 1230 $unique = File_Archive::getOption("appendRemoveDuplicates");
|
| /plugin/findologicxmlexport/vendor/hoa/compiler/Bin/ |
| D | Pp.php | 81 while (false !== $c = $this->getOption($v)) {
|
| /plugin/zip/pear/File/Archive/ |
| D | Reader.php | 245 $bufferSize = File_Archive::getOption('blockSize');
|