Home
last modified time | relevance | path

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

12345678910>>...100

/plugin/dw2pdf/vendor/mpdf/mpdf/src/
DTag.php10 class Tag class
103 * @param string $tag The tag name
104 * @return \Mpdf\Tag\Tag
106 private function getTagInstance($tag) argument
108 $className = self::getTagClassName($tag);
126 * Returns the fully qualified name of the class handling the rendering of the given tag
128 * @param string $tag The tag name
131 public static function getTagClassName($tag) argument
167 $className = 'Mpdf\Tag\\';
168 $className .= isset($map[$tag]) ? $map[$tag] : ucfirst(strtolower($tag));
[all …]
/plugin/doxycode/
Ddoxygen.conf7 # front of the TAG it is preceding.
11 # TAG = value [value, ...]
13 # TAG += value [value, ...]
30 # This tag specifies the encoding used for all characters in the configuration
32 # text before the first occurrence of this tag. Doxygen uses libiconv (or the
39 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
47 # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
53 # Using the PROJECT_BRIEF tag one can provide an optional one line description
59 # With the PROJECT_LOGO tag one can specify a logo or an icon that is included
66 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
[all …]
/plugin/tag/_test/
Dtopic_tag.test.php4 * Tests the basic functionality of the tag and topic syntax
8 $this->pluginsEnabled[] = 'tag';
16 '{{tag>mytag test2tag}}', 'Test'
20 '{{topic>mytag}}'.DOKU_LF.DOKU_LF.'{{tag>topictag mytag}}'.DOKU_LF, 'Test'
24 …$this->assertContains('tag:topictag', p_wiki_xhtml('topic_page'), 'Page with tag syntax doesn\'t c…
25 …$this->assertNotContains('tag:test2tag', p_wiki_xhtml('topic_page'), 'Page with tag and topic synt…
26 …$this->assertContains('topic_page', p_wiki_xhtml('topic_page'), 'Page with topic and tag syntax do…
28 …$this->assertContains('tag:mytag', p_wiki_xhtml('tagged_page'), 'Page with tag syntax doesn\'t con…
29 …$this->assertContains('tag:test2tag', p_wiki_xhtml('tagged_page'), 'Page with tag syntax doesn\'t …
30 …$this->assertNotContains('tag:topictag', p_wiki_xhtml('tagged_page'), 'Page with tag syntax contai…
[all …]
/plugin/gtime/gtlib/asn1/
DASN1Constants.php25 * ASN.1 Boolean tag
31 * ASN.1 Integer tag
37 * ASN.1 BitString tag
43 * ASN.1 OctetString tag
49 * ASN.1 Null tag
55 * ASN.1 Object Id tag
61 * ASN.1 External tag, not implemented
66 * ASN.1 Enumerated tag, not implemented
71 * ASN.1 Sequence tag
77 * ASN.1 Sequence Of tag
[all …]
DASN1Tag.php25 * ASN.1 Tag implementation.
82 $tag = $this->tagValue;
85 $tag = $tag | 0x20;
91 $tag = $tag | 0x40;
95 $tag = $tag | 0xC0;
99 $tag = $tag | 0x80;
104 $bytes[0] = $tag;
111 * Return the object embedded inside this ASN.1 Tag.
116 * @return ASN1Object object embedded inside this tag
125 throw new GTException("Invalid explicit tag encoding with trailing bytes");
[all …]
/plugin/diagramsnet/lib/math/jax/input/AsciiMath/
Djax.js19tag:"mo",output:ac,tex:null,ttype:V});B()}function r(ab){z.push(ab);B()}var D=["\uD835\uDC9C","\u2… property
/plugin/asciimath/
Dasciimathml148r.js97 var AMsqrt = {input:"sqrt", tag:"msqrt", output:"sqrt", tex:null, ttype:UNARY}, property
98 AMroot = {input:"root", tag:"mroot", output:"root", tex:null, ttype:BINARY}, property
99 AMfrac = {input:"frac", tag:"mfrac", output:"/", tex:null, ttype:BINARY}, property
100 AMdiv = {input:"/", tag:"mfrac", output:"/", tex:null, ttype:INFIX}, property
101 AMover = {input:"stackrel", tag:"mover", output:"stackrel", tex:null, ttype:BINARY}, property
102 AMsub = {input:"_", tag:"msub", output:"_", tex:null, ttype:INFIX}, property
103 AMsup = {input:"^", tag:"msup", output:"^", tex:null, ttype:INFIX}, property
104 AMtext = {input:"text", tag:"mtext", output:"text", tex:null, ttype:TEXT}, property
105 AMmbox = {input:"mbox", tag:"mtext", output:"mbox", tex:null, ttype:TEXT}, property
106 AMquote = {input:"\"", tag:"mtext", output:"mbox", tex:null, ttype:TEXT}; property
[all …]
/plugin/blogtng/helper/
Dtags.php8 * Delivers tag related functions
45 * Return the tag array
67 $query = 'SELECT tag
70 ORDER BY tag ASC';
85 $tags[] = $tag_from_db['tag'];
104 $query = 'SELECT COUNT(tag) AS tagcount
127 $query = 'SELECT tags.tag AS tag, tags.pid AS pid
156 foreach ($this->tags as $tag) {
157 $query = 'INSERT INTO tags (pid, tag) VALUES (?, ?)';
158 if (!$this->sqlitehelper->getDB()->query($query, $this->pid, $tag)) {
[all …]
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/
DDocBlock.php15 use phpDocumentor\Reflection\DocBlock\Tag; alias
26 /** @var Tag[] An array containing all the tags in this docblock; except inline. */
44 * @param DocBlock\Tag[] $tags
62 Assert::allIsInstanceOf($tags, Tag::class);
66 foreach ($tags as $tag) {
67 $this->addTag($tag);
154 * @return Tag[]
167 * @return Tag[]
175 /** @var Tag $tag */
176 foreach ($this->getTags() as $tag) {
[all …]
/plugin/combo/ComboStrap/
H A DXmlTagProcessing.php6 use ComboStrap\Tag\AdTag;
7 use ComboStrap\Tag\BackgroundTag;
8 use ComboStrap\Tag\BarTag;
9 use ComboStrap\Tag\BoxTag;
10 use ComboStrap\Tag\FollowTag;
11 use ComboStrap\Tag\MermaidTag;
12 use ComboStrap\Tag\RelatedTag;
13 use ComboStrap\Tag\ShareTag;
14 use ComboStrap\Tag\SubscribeTag;
15 use ComboStrap\Tag\TableTag;
[all …]
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/xml/
DTag.php26 * Tag class provides a base for parsing, modifying, outputting and creating XML tags
27 * @class Tag
34 class Tag { class
58 * Constructor creates a tag object with the specified name and tag content
59 * @method Tag
64 function Tag($name = "", $content = "") { function in Tag
105 * Get tag content string
107 * @returns string tag content
114 * Get tag name string
116 * @returns string tag name
[all …]
DXML.php25 import("org.active-link.xml.Tag");
35 * @requires Tag, Tree, XMLBranch, XMLLeaf
42 var $tag; variable in XML
47 * If argument is a tag path, creates appropriate branches and tags
48 * If argument is a simple string then sets that as a root tag name
57 $this->tag = new Tag();
60 if(strpos($argument, $this->tag->tagEndOpen) > 0 || strpos($argument, $this->tag->tagClose) > 0)
62 // else if this is a tag path to be created
65 $this->tag->setTagName($tags[0]);
69 $this->tag->setTagName($argument);
[all …]
/plugin/vcard/lang/de/
Dsettings.php4 $lang['tag_vcard']= 'Tag für VCARD';
5 $lang['tag_org'] = 'Tag für ORG';
6 $lang['tag_tel'] = 'Tag für TEL';
7 $lang['tag_tel_type_work'] = 'Tag für TEL TYPE WORK';
8 $lang['tag_tel_type_cell'] = 'Tag für TEL TYPE CELL';
9 $lang['tag_tel_type_home'] = 'Tag für TEL TYPE HOME';
10 $lang['tag_tel_type_fax'] = 'Tag für TEL TYPE FAX';
11 $lang['tag_tel_value'] = 'Tag für TEL VALUE';
12 $lang['tag_street-address'] = 'Tag für STREET-ADDRESS';
13 $lang['tag_postal-code'] = 'Tag für POSTAL-CODE';
[all …]
/plugin/vcard/lang/en/
Dsettings.php4 $lang['tag_vcard']= 'Tag for VCARD';
5 $lang['tag_org'] = 'Tag for ORG';
6 $lang['tag_tel'] = 'Tag for TEL';
7 $lang['tag_tel_type_work'] = 'Tag for TEL TYPE WORK';
8 $lang['tag_tel_type_cell'] = 'Tag for TEL TYPE CELL';
9 $lang['tag_tel_type_home'] = 'Tag for TEL TYPE HOME';
10 $lang['tag_tel_type_fax'] = 'Tag for TEL TYPE FAX';
11 $lang['tag_tel_value'] = 'Tag for TEL VALUE';
12 $lang['tag_street-address'] = 'Tag for STREET-ADDRESS';
13 $lang['tag_postal-code'] = 'Tag for POSTAL-CODE';
[all …]
/plugin/exttab3/
Dsyntax.php35 protected $stack = array(); // stack of current open tag - used by handle() method
90 protected function writeCall($tag, $attr, $state, $pos, $match, $handler) argument
92 $data = array($state, $tag, $attr);
96 protected function open($tag, $attr, $pos, $match, $handler) argument
98 //$this->writeCall($tag,$attr,DOKU_LEXER_ENTER, $pos,$match,$handler);
99 $match = array(DOKU_LEXER_ENTER, $tag, $attr);
103 protected function close($tag, $pos, $match, $handler) argument
105 //$this->writeCall($tag,'',DOKU_LEXER_EXIT, $pos,$match,$handler);
106 $match = array(DOKU_LEXER_EXIT, $tag, $attr);
114 * @return array tag name and attributes
[all …]
/plugin/tag/
Dhelper.php11 * Helper part of the tag plugin, allows to query and print tags
17 * @var string namespace tag links point to
30 * @deprecated 2022-08-31 Not used/filled any more by tag plugin
70 'desc' => 'returns the tag links of a given page',
76 'desc' => 'generates tag links for given words',
86 'tag (required)' => 'string'
168 foreach ($tags as $tag) {
169 $links[] = $this->tagLink($tag);
175 * Returns the link for one given tag
177 * @param string $tag the tag the link shall point to
[all …]
/plugin/doxycode/helper/
Dtagmanager.php14 private $tagfile_dir; // convenience variable for accessing the tag files
22 * List tag files in the tag file directory.
25 …* arrays as values. This ensures compatibility with the tag file configuration from loadTagFileCon…
26 * The list of tag files can then be merged with the tag file configuration.
103 * Save the tag file configuration as json in the tag file directory.
105 * This function filters the relevant keys from the tag file configuration
106 * and saves all entries as a 'tagconfig.json' in the tag file directory.
108 * @param Array &$tag_config Array with tag file configuration entries.
125 * @var String[] Copied tag file configuration entries.
131 // create the tag file directory if not existent (might happen after installing the plugin)
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/
DFileCommentSniff.php137 // We are only interested if this is the first open tag.
185 // Check the PHP Version, which should be in some text before the first tag.
203 // Check each tag.
213 * Processes each required or optional tag.
236 foreach ($tokens[$commentStart]['comment_tags'] as $tag) {
237 $name = $tokens[$tag]['content'];
243 $error = 'Only one %s tag is allowed in a %s comment';
248 … $phpcsFile->addError($error, $tag, 'Duplicate'.ucfirst(substr($name, 1)).'Tag', $data);
252 $tagTokens[$name][] = $tag;
254 $string = $phpcsFile->findNext(T_DOC_COMMENT_STRING, $tag, $commentEnd);
[all …]
/plugin/tagging/lang/en/
H A Dlang.php6 $lang['admin tag'] = 'Tag name';
14 $lang['admin find tag'] = 'Find Tag';
16 $lang['admin rename tag'] = 'Rename tag';
19 $lang['admin enter tag names'] = 'Please enter the current and the new tag name';
20 $lang['admin tag does not exists'] = 'The tag name you entered does not exist.';
21 $lang['admin renamed'] = 'Your tag has been renamed';
30 $lang['toggle admin mode'] = 'Tag Admin';
36 $lang['search_any_tag'] = 'Tag search: any';
37 $lang['search_all_tags'] = 'Tag search: all';
40 $lang['search_filter_label'] = 'Tag filter';
[all …]
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
DLogglyHandler.php44 protected $tag = []; variable in Monolog\\Handler\\LogglyHandler
99 * @param string[]|string $tag
101 public function setTag($tag): self argument
103 $tag = !empty($tag) ? $tag : [];
104 $this->tag = is_array($tag) ? $tag : [$tag];
110 * @param string[]|string $tag
112 public function addTag($tag): self argument
114 if (!empty($tag)) {
115 $tag = is_array($tag) ? $tag : [$tag];
116 $this->tag = array_unique(array_merge($this->tag, $tag));
[all …]
/plugin/hcalendar/lang/de/
Dsettings.php15 $lang['tag_vevent'] = 'Tag für VEVENT';
16 $lang['tag_summary'] = 'Tag für SUMMARY';
17 $lang['tag_dtstart'] = 'Tag für DTSTART';
18 $lang['tag_dtend'] = 'Tag für DTEND';
19 $lang['tag_location'] = 'Tag für LOCATION';
20 $lang['tag_uid'] = 'Tag für UID';
21 $lang['tag_dtstamp'] = 'Tag für DTSTAMP';
23 $lang['itag_vevent'] = 'Inline-Tag für VEVENT';
24 $lang['itag_summary'] = 'Inline-Tag für SUMMARY';
25 $lang['itag_dtstart'] = 'Inline-Tag für DTSTART';
[all …]
/plugin/hcalendar/lang/en/
Dsettings.php15 $lang['tag_vevent'] = 'Tag for VEVENT';
16 $lang['tag_summary'] = 'Tag for SUMMARY';
17 $lang['tag_dtstart'] = 'Tag for DTSTART';
18 $lang['tag_dtend'] = 'Tag for DTEND';
19 $lang['tag_location'] = 'Tag for LOCATION';
20 $lang['tag_uid'] = 'Tag for UID';
21 $lang['tag_dtstamp'] = 'Tag for DTSTAMP';
23 $lang['itag_vevent'] = 'Inline-Tag for VEVENT';
24 $lang['itag_summary'] = 'Inline-Tag for SUMMARY';
25 $lang['itag_dtstart'] = 'Inline-Tag for DTSTART';
[all …]
/plugin/tagbutton/
Dsyntax.php34 $this->Lexer->addSpecialPattern('\{\{tag-button>.+?\}\}', $mode, 'plugin_tagbutton');
43 // Split the tag, parameter, and label
45 list($tag, $param) = array_pad(explode(':', $tagParam, 2), 2, null);
47 return array(trim($tag), trim($param), trim($label));
56 // list($tag, $label) = $data;
57 list($tag, $param, $label) = $data;
58 $buttonId = 'tagbutton-' . md5($tag);
60 // If the label is null or empty, use the tag as the label
62 $label = $tag;
68 $buttonClass .= ' tag' . htmlspecialchars($param);
[all …]
Daction.php37 // Get the tag and page ID from the AJAX request
38 $tag = $INPUT->str('tag');
41 if($tag && $id) {
44 // Check if {{tag>}} already exists
45 if (preg_match('/\{\{tag>(.*?)\}\}/', $pageContent, $matches)) {
48 // If tag already exists and the configuration is set to hide the button, return
49 if (in_array($tag, $existingTags) && $this->getConf('hide_if_exists')) {
54 // Add the tag if it doesn't already exist
55 if (!in_array($tag, $existingTags)) {
56 $existingTags[] = $tag;
[all …]
/plugin/struct/_test/types/
H A DTagTest.php18 $this->loadSchemaJSON('tag');
21 … $this->saveData('page1', 'tag', ['tag' => 'Aragorn', 'tags' => ['Faramir', 'Gollum']], time());
22 … $this->saveData('page2', 'tag', ['tag' => 'Eldarion', 'tags' => ['Saruman', 'Arwen']], time());
24 … $this->saveData('page1', 'tag', ['tag' => 'Treebeard', 'tags' => ['Frodo', 'Arwen']], time());
31 $schema = new Schema('tag');
33 // search tag field, should not find Aragon because tag is not in current revision
35 $tag = $schema->findColumn('tag')->getType();
36 $return = $tag->handleAjax();
45 $tag = $schema->findColumn('tags')->getType();
46 $return = $tag->handleAjax();

12345678910>>...100