/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/ |
H A D | ignore_missing.test | 4 {% include ["foo.twig", "bar.twig"] ignore missing %} 5 {% include "foo.twig" ignore missing %} 6 {% include "foo.twig" ignore missing with {} %} 7 {% include "foo.twig" ignore missing with {} only %}
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Commenting/ |
H A D | DocCommentAlignmentSniff.php | 70 $ignore = PHP_CodeSniffer_Tokens::$emptyTokens; 72 $ignore[] = T_EQUAL; 73 $ignore[] = T_STRING; 74 $ignore[] = T_OBJECT_OPERATOR; 77 $nextToken = $phpcsFile->findNext($ignore, ($stackPtr + 1), null, true); 78 $ignore = array( 93 if (isset($ignore[$tokens[$nextToken]['code']]) === false) {
|
H A D | InlineCommentSniff.php | 83 $ignore = array( 103 if (in_array($tokens[$nextToken]['code'], $ignore) === true) { 110 $ignore = PHP_CodeSniffer_Tokens::$emptyTokens; 111 $ignore[] = T_EQUAL; 112 $ignore[] = T_STRING; 113 $ignore[] = T_OBJECT_OPERATOR; 114 $nextToken = $phpcsFile->findNext($ignore, ($nextToken + 1), null, true);
|
H A D | VariableCommentSniff.php | 49 $ignore = array( 58 $commentEnd = $phpcsFile->findPrevious($ignore, ($stackPtr - 1), null, true);
|
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/ |
H A D | AbstractEndpoint.php | 269 … $ignore = isset($this->options['client']['ignore']) ? $this->options['client']['ignore'] : null; 270 if (isset($ignore) === true) { 271 if (is_string($ignore)) { 272 $this->options['client']['ignore'] = explode(",", $ignore); 273 } elseif (is_array($ignore)) { 274 $this->options['client']['ignore'] = $ignore; 276 $this->options['client']['ignore'] = [$ignore];
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/WhiteSpace/ |
H A D | MemberVarSpacingSniff.php | 48 $ignore = PHP_CodeSniffer_Tokens::$methodPrefixes; 49 $ignore[] = T_VAR; 50 $ignore[] = T_WHITESPACE; 53 $prev = $phpcsFile->findPrevious($ignore, ($stackPtr - 1), null, true);
|
H A D | ControlStructureSpacingSniff.php | 140 $ignore = array( 148 if (isset($ignore[$tokens[$firstContent]['code']]) === false 187 if (isset($ignore[$tokens[$checkToken]['code']]) === false
|
/plugin/displayorphans/ |
H A D | README.md | 38 | `ignore_orphaned_pages` | empty | Space-separated list of pages to ignore when generating tables … 39 | `ignore_orphaned_namespaces` | empty | Space-separated list of namespaces to ignore when generati… 40 | `ignore_wanted_pages` | empty | Space-separated list of pages to ignore when generating tables of… 41 | `ignore_wanted_namespaces` | empty | Space-separated list of namespaces to ignore when generating… 42 | `ignore_linked_pages` | empty | Space-separated list of pages to ignore when generating tables of… 43 | `ignore_linked_namespaces` | empty | Space-separated list of namespaces to ignore when generating…
|
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/ |
H A D | include.rst | 91 The ``ignore missing`` feature has been added in Twig 1.2. 93 You can mark an include with ``ignore missing`` in which case Twig will ignore 99 {% include 'sidebar.html' ignore missing %} 100 {% include 'sidebar.html' ignore missing with {'foo': 'bar'} %} 101 {% include 'sidebar.html' ignore missing only %} 113 If ``ignore missing`` is given, it will fall back to rendering nothing if none
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/ |
H A D | SAPIUsageSniff.php | 57 $ignore = array( 65 if (isset($ignore[$tokens[$prevToken]['code']]) === true) {
|
H A D | ForbiddenFunctionsSniff.php | 126 $ignore = array( 153 if (isset($ignore[$tokens[$prevToken]['code']]) === true) { 159 if (isset($ignore[$tokens[$nextToken]['code']]) === true) {
|
/plugin/freechat/phpfreechat/src/commands/ |
H A D | help.class.php | 20 …$ignore = array("updatemynick", "getnewmsg", "notice", "getonlinenick", "error", "update", "asknic… 27 if (!in_array($res[1],$ignore)) $cmdlist[] = $res[1];
|
/plugin/autolink3/ |
H A D | sys.php | 31 $ignore = 0; 36 if ($element == "[[" || $element == "{{") $ignore = 1; 37 elseif ($element == "]]" || $element == "}}") $ignore = 0; 38 elseif ($ignore == 0)
|
/plugin/directorylist/ |
H A D | readme.md | 23 <directorylist: path="value" ignore="value" recursive="1" fileorder="asc"> 41 You can ignore directories or files with the ignore argument. 43 The ignore argument has to be a comma separated [shell pattern](http://www.php.net/manual/en/functi… 50 <directorylist: [...] ignore="*.pdf,*.js,specialfile.doc,some_*_files.xlsx">
|
/plugin/git/action/ |
H A D | merge.php | 32 case 'ignore' : $this->ignore(); break; 63 function ignore() function in action_plugin_git_merge
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/ |
H A D | DisallowComparisonAssignmentSniff.php | 82 $ignore = array( 88 $next = $phpcsFile->findNext($ignore, ($stackPtr + 1), null, true);
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/ |
H A D | File.php | 1901 &$ignore=0 argument 1915 $originalIgnore = $ignore; 1964 && $ignore === 0 1990 $ignore--; 2239 $ignore 2332 $ignore++; 2340 $ignore--; 3460 if ($ignore !== null) { 3461 $ignore = (array) $ignore; 3528 if ($ignore !== null) { [all …]
|
/plugin/quickstats/ |
H A D | script.js | 129 var ignore = document.getElementById('qs_ignore').checked; 152 if(!ignore || priority == 'country') { 163 if(!ignore || priority == 'agent') { 197 if(!ignore || priority == 'ip') { 202 if(!ignore || priority == 'page') {
|
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/ |
H A D | Connection.php | 327 $ignore = $request['client']['ignore'] ?? []; variable in Elasticsearch\\Connections\\Connection 331 $ignore[] = 404; 333 $this->process4xxError($request, $response, $ignore); 335 $ignore = $request['client']['ignore'] ?? []; variable in Elasticsearch\\Connections\\Connection 336 $this->process5xxError($request, $response, $ignore); 666 …private function process4xxError(array $request, array $response, array $ignore): ?ElasticsearchEx… argument 675 if (array_search($response['status'], $ignore) !== false) { 701 …private function process5xxError(array $request, array $response, array $ignore): ?ElasticsearchEx… argument 715 if (array_search($statusCode, $ignore) !== false) {
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/ |
H A D | disable-code-coverage-ignore.phpt | 2 phpunit --colors=never --coverage-text=php://stdout --disable-coverage-ignore IgnoreCodeCoverageCla… 14 $_SERVER['argv'][4] = '--disable-coverage-ignore';
|
/plugin/top/ |
H A D | CrawlerDetect.php | 34 protected static $ignore = array( variable in Jaybizzle\\CrawlerDetect\\CrawlerDetect 389 return '('.implode('|', self::$ignore).')';
|
/plugin/rating/ |
H A D | CrawlerDetect.php | 34 protected static $ignore = array( variable in Jaybizzle\\CrawlerDetect\\CrawlerDetect 389 return '('.implode('|', self::$ignore).')';
|
/plugin/ckgedit/ckeditor/ |
H A D | build-config.js | 30 ignore: [ property in CKBUILDER_CONFIG
|
/plugin/dropfiles/ |
H A D | .flowconfig | 1 [ignore]
|
/plugin/dw2pdf/vendor/mpdf/mpdf/src/ |
H A D | TTFontFile.php | 2917 $ignore = false; 2920 $ignore = true; 2923 $ignore = true; 2926 $ignore = true; 2933 $ignore = true; 2938 $ignore = true; 2941 return $ignore; 3064 $str .= $ignore . " "; 3076 function _makeGSUBinputMatch($inputGlyphs, $ignore) argument 3085 $str .= $ignore . " "; [all …]
|