Home
last modified time | relevance | path

Searched refs:tag_name (Results 1 – 25 of 59) sorted by relevance

123

/plugin/swiftmail/Swift/Plugin/
H A DFileEmbedder.php237 public function getRemoteFilePattern($tag_name) argument
239 $tag_name = strtolower($tag_name);
241 if ($def = $this->getTagDefinition($tag_name))
243 $pattern = sprintf($pattern_format, $tag_name, implode("|", $def["attributes"]),
254 public function getLocalFilePattern($tag_name) argument
256 $tag_name = strtolower($tag_name);
258 if ($def = $this->getTagDefinition($tag_name))
260 $pattern = sprintf($pattern_format, $tag_name, implode("|", $def["attributes"]),
413 foreach ($this->definitions as $tag_name => $def)
417 $re = $this->getRemoteFilePattern($tag_name);
[all …]
/plugin/openid/Auth/OpenID/
H A DParse.php140 * @param string $tag_name
144 function tagMatcher($tag_name, $close_tags = null) argument
149 $options = implode("|", array_merge([$tag_name], $close_tags));
152 $closer = $tag_name;
155 $expr = sprintf($expr, $tag_name, $closer);
159 function openTag($tag_name) argument
161 $expr = sprintf($this->_open_tag_expr, $tag_name);
165 function closeTag($tag_name) argument
167 $expr = sprintf($this->_close_tag_expr, $tag_name, $tag_name);
/plugin/fedauth/Auth/OpenID/
H A DParse.php140 function tagMatcher($tag_name, $close_tags = null) argument
145 $options = implode("|", array_merge(array($tag_name), $close_tags));
148 $closer = $tag_name;
151 $expr = sprintf($expr, $tag_name, $closer);
155 function openTag($tag_name) argument
157 $expr = sprintf($this->_open_tag_expr, $tag_name);
161 function closeTag($tag_name) argument
163 $expr = sprintf($this->_close_tag_expr, $tag_name, $tag_name);
/plugin/bootswrapper/exe/
H A Dpopup.php75 if ($tag_name = $syntax_class->tag_name) { variable
77 if ($tag_name == 'pills' || $tag_name == 'tabs') {
80 $syntax[$tag_name] = $tag_attributes;
/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DWebDriverBy.php116 * @param string $tag_name
119 public static function tagName($tag_name) argument
121 return new static('tag name', $tag_name);
H A DWebDriverSelect.php22 $tag_name = $element->getTagName();
24 if ($tag_name !== 'select') {
25 throw new UnexpectedTagNameException('select', $tag_name);
/plugin/diagram/syntax/
H A Dsplitter.php38 var $tag_name = '_diagram_'; variable in syntax_plugin_diagram_splitter
107 $this->Lexer->addEntryPattern('<'.$this->tag_name.'>',
124 $this->Lexer->addExitPattern('</'.$this->tag_name.'>',
/plugin/jukebox/id3/
H A Dgetid3.php1019 list($tag_name, $encoding) = $tagname_encoding_array;
1032 …$this->info['tags'][trim($tag_name)][trim($tag_key)][] = $value; // do not trim!! Unicode characte…
1037 if (!isset($this->info['tags'][$tag_name])) {
1043 foreach ($this->info['tags'][$tag_name] as $tag_key => $valuearray) {
1047 …$this->info['tags_html'][$tag_name][$tag_key][$key] = str_replace('&#0;', '', getid3_lib::MultiByt…
1049 $this->info['tags_html'][$tag_name][$tag_key][$key] = $value;
1055 …$this->CharConvert($this->info['tags'][$tag_name], $encoding); // only copy gets convert…
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dgetid3.php538 …3v2'=>'id3v2', 'id3v1'=>'id3v1', 'apetag'=>'ape', 'lyrics3'=>'lyrics3') as $tag_name => $tag_key) {
539 $option_tag = 'option_tag_'.$tag_name;
541 $this->include_module('tag.'.$tag_name);
543 $tag_class = 'getid3_'.$tag_name;
555 …foreach (array('id3v1'=>'id3v1', 'apetag'=>'ape', 'lyrics3'=>'lyrics3') as $tag_name => $tag_key) {
1474 list($tag_name, $encoding) = $tagname_encoding_array;
1490 $this->info['tags'][trim($tag_name)][trim($tag_key)][$key] = $value;
1492 $this->info['tags'][trim($tag_name)][trim($tag_key)][] = $value;
1502 if (!isset($this->info['tags'][$tag_name])) {
1507 …$this->CharConvert($this->info['tags'][$tag_name], $this->info[$comment_name]['encoding']); …
[all …]
/plugin/bootswrapper/syntax/
H A Drow.php15 public $tag_name = 'row'; variable in syntax_plugin_bootswrapper_row
H A Dpills.php16 public $tag_name = 'pills'; variable in syntax_plugin_bootswrapper_pills
H A Dtabs.php16 public $tag_name = 'tabs'; variable in syntax_plugin_bootswrapper_tabs
H A Dpageheader.php17 public $tag_name = 'page-header'; variable in syntax_plugin_bootswrapper_pageheader
H A Dprogress.php18 public $tag_name = 'progress'; variable in syntax_plugin_bootswrapper_progress
H A Dbadge.php18 public $tag_name = 'badge'; variable in syntax_plugin_bootswrapper_badge
H A Dcaption.php18 public $tag_name = 'caption'; variable in syntax_plugin_bootswrapper_caption
H A Dgrid.php18 public $tag_name = 'grid'; variable in syntax_plugin_bootswrapper_grid
H A Dhidden.php18 public $tag_name = 'hidden'; variable in syntax_plugin_bootswrapper_hidden
H A Dinvisible.php18 public $tag_name = 'invisible'; variable in syntax_plugin_bootswrapper_invisible
H A Dlead.php18 public $tag_name = 'lead'; variable in syntax_plugin_bootswrapper_lead
H A Dlist.php18 public $tag_name = 'list-group'; variable in syntax_plugin_bootswrapper_list
H A Dpanelbody.php18 public $tag_name = 'panel-body'; variable in syntax_plugin_bootswrapper_panelbody
H A Dshow.php18 public $tag_name = 'show'; variable in syntax_plugin_bootswrapper_show
H A Dslide.php18 public $tag_name = 'slide'; variable in syntax_plugin_bootswrapper_slide
H A Dthumbnail.php18 public $tag_name = 'thumbnail'; variable in syntax_plugin_bootswrapper_thumbnail

123