Home
last modified time | relevance | path

Searched refs:patterns (Results 1 – 25 of 151) sorted by last modified time

1234567

/plugin/structpublish/meta/
H A DAssignments.php20 /** @var array All the assignments patterns */
21 protected $patterns; variable in dokuwiki\\plugin\\structpublish\\meta\\Assignments
56 * Load existing assignment patterns
61 $this->patterns = $this->sqlite->queryAll($sql);
78 // reload patterns
116 // reload patterns
133 * Updates all assignments of a given page against the current patterns
154 * Clear all patterns - deassigns all pages
173 // reload patterns
213 return $this->patterns;
[all...]
/plugin/struct/meta/
H A DAssignments.php21 /** @var array All the assignments patterns */
22 protected $patterns;
58 * Load existing assignment patterns
63 $this->patterns = $this->sqlite->queryAll($sql);
79 // reload patterns
100 // reload patterns
119 * Rechecks all assignments of a given page against the current patterns
125 // reload patterns
144 * Clear all patterns - deassigns all pages
163 // reload patterns
20 protected $patterns; global() variable in dokuwiki\\plugin\\struct\\meta\\Assignments
[all...]
/plugin/struct/lang/en/
H A Dassignments_intro.txt3 Here you can define patterns to automatically assign schemas to pages. Whenever a page matches one of the patterns here, the appropiate schemas will be shown.
/plugin/struct/helper/
H A Dimexport.php30 * Delete all existing assignment patterns of a schema and replace them with the provided ones.
33 * @param string[] $patterns
35 public function replaceSchemaAssignmentPatterns($schemaName, $patterns)
46 foreach ($patterns as $pattern) {
57 * Returns array of patterns for the given Schema
70 $patterns = $this->sqlite->queryAll($sql, $schemaName);
71 return array_map(static fn($elem) => $elem['pattern'], $patterns);
31 replaceSchemaAssignmentPatterns($schemaName, $patterns) global() argument
/plugin/openlayersmap/ol7/
H A Dol.js.map
/plugin/acknowledge/
H A Dhelper.php106 // regex patterns
224 * Set assignees for a given page from the patterns
229 $patterns = $this->getAssignmentPatterns();
234 // find all patterns that match the page and add the configured assignees
235 foreach ($patterns as $pattern => $assignees) {
332 * Get all the assignment patterns
342 * Save new assignment patterns
344 * This resaves all patterns and reapplies them
346 * @param array $patterns (pattern => assignees)
348 public function saveAssignmentPatterns($patterns)
335 saveAssignmentPatterns($patterns) global() argument
[all...]
/plugin/acknowledge/admin/
H A Dassign.php37 $patterns = array_combine($pattern, $assignees);
39 if ($patterns && checkSecurityToken()) {
40 $helper->saveAssignmentPatterns($patterns);
/plugin/acknowledge/lang/en/
H A Dassign.txt3 Here you can define patterns to automatically assign people and groups to acknowledge certain pages.
4 Whenever a page matches one of the patterns here, the people and groups will be assigned.
/plugin/templater/
H A Dsyntax.php209 $patterns = array('!<div class="toc">.*?(</div>\n</div>)!s',
213 $text = preg_replace($patterns, $replace, $text);
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs9704 … case 0x0C01: { /* MulCells (like XLS MulRK, but takes advantage of common column data patterns) */
/plugin/bureaucracy/helper/
H A Daction.php49 $this->patterns['__lang__'] = '/@LANG@/';
52 $this->patterns['__trans__'] = '/@TRANS@/';
72 $this->patterns[$label] = $field->getReplacementPattern();
81 $this->patterns['__noinclude__'] = '/<noinclude>(.*?)<\/noinclude>/is';
H A Dactionmail.php50 $this->patterns['__tablehtml__'] = '/@TABLEHTML@/';
51 $this->patterns['__tabletext__'] = '/@TABLETEXT@/';
H A Dactiontemplate.php32 $this->patterns = array();
43 'patterns' => &$this->patterns,
267 $this->patterns['__nsbase__'] = '/@NSBASE@/';
271 'patterns' => &$this->patterns,
452 $patterns = array();
456 $patterns[$key] = $this->patterns[$key];
460 $this->targetpages[$targetpageid] = preg_replace($patterns, $values, $data['tpl']);
/plugin/bureaucracy/
H A Dsyntax.php24 var $patterns = array(); variable in syntax_plugin_bureaucracy
486 $pattern = $this->patterns[$label];
572 $this->patterns['__user__'] = '/@USER@/';
573 $this->patterns['__name__'] = '/@NAME@/';
574 $this->patterns['__mail__'] = '/@MAIL@/';
575 $this->patterns['__date__'] = '/@DATE@/';
601 $this->patterns['__year__'] = '/@YEAR@/';
602 $this->patterns['__month__'] = '/@MONTH@/';
604 $this->patterns['__day__'] = '/@DAY@/';
605 $this->patterns['__time__'] = '/@TIME@/';
[all …]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DHyphenator.php13 private $patterns; variable in Mpdf\\Hyphenator
32 $this->patterns = [];
125 if (isset($this->patterns[mb_substr($text_word, $position, $win, 'UTF-8')])) {
126 $pattern = $this->patterns[mb_substr($text_word, $position, $win, 'UTF-8')];
159 return !(count($this->patterns) < 1 || ($this->loadedPatterns && $this->loadedPatterns !== $this->mpdf->SHYlang));
164 $patterns = require __DIR__ . '/../data/patterns/' . $this->mpdf->SHYlang . '.php';
165 $patterns = explode(' ', $patterns);
168 $patternCount = count($patterns);
[all...]
H A DMpdf.php344 var $patterns;
1142 // Tiling patterns used for backgrounds
1143 $this->patterns = [];
2282 $n = count($this->patterns) + 1;
2286 $this->patterns[$n] = ['x' => $clx, 'y' => $cly, 'w' => $clw, 'h' => $clh, 'pgh' => $this->h, 'image_id' => $this->bodyBackgroundImage['image_id'], 'orig_w' => $orig_w, 'orig_h' => $orig_h, 'x_pos' => $this->bodyBackgroundImage['x_pos'], 'y_pos' => $this->bodyBackgroundImage['y_pos'], 'x_repeat' => $x_repeat, 'y_repeat' => $y_repeat, 'itype' => $this->bodyBackgroundImage['itype']];
2410 $n = count($this->patterns) + 1;
2414 $this->patterns[$n] = ['x' => $pb['x'], 'y' => $pb['y'], 'w' => $pb['w'], 'h' => $pb['h'], 'pgh' => $this->h, 'image_id' => $pb['image_id'], 'orig_w' => $orig_w, 'orig_h' => $orig_h, 'x_pos' => $pb['x_pos'], 'y_pos' => $pb['y_pos'], 'x_repeat' => $x_repeat, 'y_repeat' => $y_repeat, 'itype' => $pb['itype'], 'bpa' => $pb['bpa']];
2606 $n = count($this->patterns) + 1;
2608 $this->patterns[$n] = ['x' => $pb['x'], 'y' => $pb['y'], 'w' => $pb['w'], 'h' => $pb['h'], 'pgh' => $this->h, 'image_id' => $pb['image_id'], 'orig_w' => $orig_w, 'orig_h' => $orig_h, 'x_pos' => $pb['x_pos'], 'y_pos' => $pb['y_pos'], 'x_repeat' => $x_repeat, 'y_repeat' => $y_repeat, 'itype' => $pb['itype']];
11997 $n = count($this->patterns)
351 var $patterns; global() variable in Mpdf\\Mpdf
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Writer/
H A DBackgroundWriter.php31 $patternCount = count($this->mpdf->patterns);
35 $x = $this->mpdf->patterns[$i]['x'];
36 $y = $this->mpdf->patterns[$i]['y'];
37 $w = $this->mpdf->patterns[$i]['w'];
38 $h = $this->mpdf->patterns[$i]['h'];
39 $pgh = $this->mpdf->patterns[$i]['pgh'];
40 $orig_w = $this->mpdf->patterns[$i]['orig_w'];
41 $orig_h = $this->mpdf->patterns[$i]['orig_h'];
42 $image_id = $this->mpdf->patterns[$i]['image_id'];
43 $itype = $this->mpdf->patterns[
[all...]
H A DResourceWriter.php206 if (count($this->mpdf->patterns)) {
208 foreach ($this->mpdf->patterns as $k => $patterns) {
209 $this->writer->write('/P' . $k . ' ' . $patterns['n'] . ' 0 R');
/plugin/dw2pdf/
H A Ddeleted.files234 mpdf/patterns/NOTES.txt
235 mpdf/patterns/de.php
236 mpdf/patterns/dictionary.txt
237 mpdf/patterns/en.php
238 mpdf/patterns/es.php
239 mpdf/patterns/fi.php
240 mpdf/patterns/fr.php
241 mpdf/patterns/it.php
242 mpdf/patterns/nl.php
243 mpdf/patterns/p
[all...]
/plugin/dw2pdf/tpl/default/
H A DREADME.txt39 The following replacement patterns can be used within the header and
/plugin/combo/syntax/
H A Dpreformatted.php106 $patterns = array('\n (?![\*\-])', '\n\t(?![\*\-])');
107 foreach ($patterns as $pattern) {
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Scanner/
H A DStatus.php13 * It defines the API and provides basic logic to match patterns.
64 protected function matchPatterns(string $buffer, int $offset, array $patterns): ?Token { argument
65 foreach ($patterns as $type => $pattern) {
/plugin/katex/_assets/contrib/
H A Dmhchem.min.js1patterns.match_(p[s].pattern,t);if(_){for(var d=p[s].task,m=0;m<d.action_.length;m++){var l;if(u.a… class in AnonymousFunctioncd8c97790100.AnonymousFunctioncd8c97790200.AnonymousFunctioncd8c97790300.a.patterns
/plugin/statistics/inc/
H A DBrowscap.php60 * Options for regex patterns.
62 * REGEX_DELIMITER: Delimiter of all the regex patterns in the whole class.
622 * This gives us patterns with "(\d)" only in places that differ for some matches.
665 * Converts browscap match patterns into preg match patterns.
685 * Converts preg match patterns back to browscap match patterns.
732 $this->_patterns = $patterns;
747 $cacheTpl = "<?php\n\$source_version=%s;\n\$cache_version=%s;\n\$properties=%s;\n\$browsers=%s;\n\$userAgents=%s;\n\$patterns=%s;\n";
/plugin/structautolink/
H A Drenderer.php128 $patterns = [];
132 $patterns[] = '(?P<p' . ($num++) . '>' . join('|', $terms) . ')';
135 $this->regex = '/\b(?:' . implode('|', $patterns) . ')\b/';

1234567