Home
last modified time | relevance | path

Searched full:tag (Results 1 – 25 of 96) sorted by relevance

1234

/dokuwiki/inc/Form/
H A DTagElement.php8 * Creates a self closing HTML tag
15 * @param string $tag
18 public function __construct($tag, $attributes = []) argument
20 parent::__construct('tag', $tag, $attributes);
H A DTagCloseElement.php8 * Creates an HTML close tag. You have to make sure it has been opened
16 * @param string $tag
19 public function __construct($tag, $attributes = []) argument
21 parent::__construct('tagclose', $tag, $attributes);
33 throw new \BadMethodCallException('You can\t add classes to closing tag');
48 throw new \BadMethodCallException('You can\t add ID to closing tag');
65 throw new \BadMethodCallException('You can\t add attributes to closing tag');
81 throw new \BadMethodCallException('You can\t add attributes to closing tag');
H A DTagOpenElement.php8 * Creates an open HTML tag. You have to make sure you close it
16 * @param string $tag
19 public function __construct($tag, $attributes = []) argument
21 parent::__construct('tagopen', $tag, $attributes);
H A DForm.php366 * Add a closed HTML tag to the form
368 * @param string $tag
372 public function addTag($tag, $pos = -1) argument
374 return $this->addElement(new TagElement($tag), $pos);
378 * Add an open HTML tag to the form
382 * @param string $tag
386 public function addTagOpen($tag, $pos = -1) argument
388 return $this->addElement(new TagOpenElement($tag), $pos);
392 * Add a closing HTML tag to the form
396 * @param string $tag
[all …]
H A DLegacyForm.php64 case 'tag':
65 $this->addTag($ctl['tag'])
72 $this->addTagOpen($ctl['tag'])
79 $this->addTagClose($ctl['tag']);
H A DValueElement.php10 * What the value is (tag name, content, etc) is defined by the actual implementations
H A DFieldsetOpenElement.php21 // the parent would expect the tag in $value but we're storing the
/dokuwiki/.github/workflows/
H A Drelease-build.yml1 # This workflow creates a new tag, builds the release archives and uploads them to GitHub and our s…
5 name: "Release: Tag, Build & Deploy"
13 tag:
14 name: Tag Release
24 - name: Check if a tag already exists
27 echo "::error::Tag already exists, be sure to update the VERSION file for a hotfix"
31 - name: Create tag
34 # a privileged token is needed here to create the (protected) tag
47 needs: tag
H A Drelease-preparation.yml55 - name: Check if a tag of the new release already exists
58 echo "::error::Tag already exists, you may need to build a hotfix instead"
/dokuwiki/inc/
H A Dform.php18 * Every pseudo-tag must have the key '_elem' set to the name of the element.
24 * tag. That way, the element output functions can pass the pseudo-element
145 * The element can be either a pseudo-tag or string.
148 * @param string|array $elem Pseudo-tag or string to add to the form.
163 * @param string|array $elem Pseudo-tag or string to add to the form.
178 * @param string|array $elem Pseudo-tag or string to add to the form.
340 * Create a form element for a non-specific empty tag.
342 * @param string $tag Tag name.
344 * @return array pseudo-tag
348 function form_makeTag($tag, $attrs = array()) argument
[all …]
H A Dtemplate.php409 * $data is an array of different header tags. Each tag can have multiple
425 foreach ($data as $tag => $inst) {
430 if ($nonce && $tag == 'script' && !empty($attr['_data'])) {
433 echo '<', $tag, ' ', buildAttributes($attr);
434 if (isset($attr['_data']) || $tag == 'script') {
435 echo '>', $attr['_data'] ?? '', '</', $tag, '>';
445 * Output the given script as inline script tag
1065 * Returns the requested EXIF/IPTC tag from the current image
1076 * @param array|string $tags tag or array of tags to try
1120 foreach ($tags as $tag) {
[all …]
/dokuwiki/vendor/kissifrot/php-ixr/src/Message/
H A DMessage.php49 // Check that the root tag is valid
96 * Opening tag handler
98 * @param $tag
101 public function tagOpen($parser, $tag, $attr) argument
104 $this->_currentTag = $tag;
105 switch ($tag) {
109 $this->messageType = $tag;
134 * Closing tag handler
136 * @param $tag
138 public function tagClose($parser, $tag) argument
[all …]
/dokuwiki/inc/Remote/OpenApiDoc/
H A DDocBlock.php101 * Get a specific tag
103 * @param string $tag
106 public function getTag($tag) argument
108 if (!isset($this->tags[$tag])) return [];
109 return $this->tags[$tag];
H A DDocBlockMethod.php54 * Parse the param tag into its components
89 * Parse the return tag into its components
104 // refine from doc tag
H A DDocBlockProperty.php34 * Parse the var tag into its components
/dokuwiki/inc/Ui/
H A DMediaDiff.php288 foreach ($rev1Tags as $key => $tag) {
289 if ($tag['value'] != $rev2Tags[$key]['value']) {
292 } elseif (!$tag['value'] || !$rev2Tags[$key]['value']) {
303 foreach ($tags as $tag) {
304 $value = cleanText($tag['value']);
306 echo '<dt>' . $lang[$tag['tag'][1]] . '</dt>';
308 if (!empty($tag['highlighted'])) echo '<strong>';
309 if ($tag['tag'][2] == 'date') {
314 if (!empty($tag['highlighted'])) echo '</strong>';
/dokuwiki/lib/plugins/logviewer/lang/de/
H A Dnolog.txt1 Es gibt keine Einträge für den ausgewählten Tag und Log-Typ.
/dokuwiki/lib/plugins/logviewer/lang/de-informal/
H A Dnolog.txt1 Es liegen keine Protokolleinträge für den ausgewählten Tag und das ausgewählte Modul vor.
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSanitize.php386 foreach ($this->strip_htmltags as $tag) {
387 $this->strip_tag($tag, $document, $xpath, $type);
404 foreach ($this->add_attributes as $tag => $valuePairs) {
405 $this->add_attr($tag, $valuePairs, $document);
496 public function replace_urls($document, $tag, $attributes) argument
502 if (!is_array($this->strip_htmltags) || !in_array($tag, $this->strip_htmltags)) {
503 $elements = $document->getElementsByTagName($tag);
535 protected function strip_tag($tag, $document, $xpath, $type) argument
537 $elements = $xpath->query('body//' . $tag);
542 // For elements which aren't script or style, include the tag itself
[all …]
/dokuwiki/_test/tests/test/
H A Dphpquery.test.php9 * meta generator tag is set to "DokuWiki"
/dokuwiki/_test/tests/Remote/OpenApiDoc/
H A DDocBlockMethodTest.php21 * @another tag
85 'tag',
/dokuwiki/conf/
H A Dinterwiki.conf30 amazon https://www.amazon.com/dp/{URL}?tag=splitbrain-20
31 amazon.de https://www.amazon.de/dp/{URL}?tag=splitbrain-21
/dokuwiki/lib/plugins/authad/lang/de-informal/
H A Dlang.php10 $lang['authpwdexpire'] = 'Dein Passwort läuft in %d Tag(en) ab. Du solltest es es frühzeiti…
/dokuwiki/lib/plugins/authad/lang/de/
H A Dlang.php11 $lang['authpwdexpire'] = 'Ihr Passwort läuft in %d Tag(en) ab. Sie sollten es frühzeitig än…
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php35 // Tag Classes
42 // Tag Classes
60 // More Tag Classes
76 // Tag Aliases
213 …* Sometimes we want to get the BER encoding of a particular tag. $start lets us do that without h…
234 $tag = $type & 0x1F;
235 if ($tag == 0x1F) {
236 $tag = 0;
245 $tag <<= 7;
251 $tag |= $temp;
[all …]

1234