Home
last modified time | relevance | path

Searched refs:tag (Results 76 – 100 of 403) sorted by relevance

12345678910>>...17

/template/templar/
H A Ddetail.php69 foreach($fields as $key => $tag){
71 if (!empty($tag[0])) {
72 $t = array($tag[0]);
74 if(is_array($tag[3])) {
75 $t = array_merge($t,$tag[3]);
79 echo '<dt>'.$lang[$tag[1]].':</dt><dd>';
80 if ($tag[2] == 'date') {
/template/lisps/
H A Ddetail.php69 foreach($fields as $key => $tag){
71 if (!empty($tag[0])) {
72 $t = array($tag[0]);
74 if(is_array($tag[3])) {
75 $t = array_merge($t,$tag[3]);
79 echo '<dt>'.$lang[$tag[1]].':</dt><dd>';
80 if ($tag[2] == 'date') {
/template/greensteel/
H A Ddetail.php69 foreach($fields as $key => $tag){
71 if (!empty($tag[0])) {
72 $t = array($tag[0]);
74 if(array_key_exists(3, $tag) && is_array($tag[3])) {
75 $t = array_merge($t,$tag[3]);
79 echo '<dt>'.$lang[$tag[1]].':</dt><dd>';
80 if ($tag[2] == 'date') {
/template/dokufreech/
H A Ddetail.php69 foreach($fields as $key => $tag){
71 if (!empty($tag[0])) {
72 $t = array($tag[0]);
74 if(is_array($tag[3])) {
75 $t = array_merge($t,$tag[3]);
79 echo '<dt>'.$lang[$tag[1]].':</dt><dd>';
80 if ($tag[2] == 'date') {
/template/kajukkk/
H A Ddetail.php69 foreach($fields as $key => $tag){
71 if (!empty($tag[0])) {
72 $t = array($tag[0]);
74 if(is_array($tag[3])) {
75 $t = array_merge($t,$tag[3]);
79 echo '<dt>'.$lang[$tag[1]].':</dt><dd>';
80 if ($tag[2] == 'date') {
/template/bootstrap3/inc/
H A Dsimple_html_dom.php134 public $tag = 'text'; variable in simple_html_dom_node
169 echo str_repeat("\t", $depth) . $this->tag;
190 $string = $this->tag;
319 function find_ancestor_tag($tag) argument
332 $debug_object->debug_log(2, 'Current tag is: ' . $ancestor->tag);
335 if ($ancestor->tag === $tag) {
371 if ($this->tag === 'text') {
377 $debug_object->debug_log(1, 'Innertext of tag
2140 as_text_node($tag) global() argument
[all...]
/template/bootstrap3/
H A Ddetail.php393 foreach($tags as $tag) {
395 $label = $lang[$tag['langkey']];
396 if(!$label) $label = $tag['langkey'] . ':';
399 if ($tag['type'] == 'date') {
400 echo dformat($tag['value']);
402 echo hsc($tag['value']);
461 foreach ($items as $tag) {
463 $value = tpl_img_getTag($tag);
464 $name = str_ireplace("$section.", '', $tag);
467 echo "<tr><th title='$tag'>
[all...]
H A Dmain.php74 if (($ACT == 'show') && $TPL->getConf('tagsOnTop') && $tag = $TPL->getPlugin('tag')) { variable
75 echo implode('', array_map('trim', explode(',', $tag->td($ID))));
138 if (! $TPL->getConf('tagsOnTop') && $tag = $TPL->getPlugin('tag')) { variable
139 echo implode('', array_map('trim', explode(',', $tag->td($ID))));
/template/prsnl10/
H A Ddetail.php98 foreach($fields as $key => $tag){
100 if (!empty($tag[0])) {
101 $t = array($tag[0]);
103 if(is_array($tag[3])) {
104 $t = array_merge($t,$tag[3]);
108 echo '<dt>'.$lang[$tag[1]].':</dt><dd>';
109 if ($tag[2] == 'date') {
/template/mnml-blog/
H A Ddetail.php98 foreach($fields as $key => $tag){
100 if (!empty($tag[0])) {
101 $t = array($tag[0]);
103 if(is_array($tag[3])) {
104 $t = array_merge($t,$tag[3]);
108 echo '<dt>'.$lang[$tag[1]].':</dt><dd>';
109 if ($tag[2] == 'date') {
/template/codowik/
H A Ddetail.php76 foreach($fields as $key => $tag){
78 if (!empty($tag[0])) {
79 $t = array($tag[0]);
81 if(is_array($tag[3])) {
82 $t = array_merge($t,$tag[3]);
86 echo '<dt>'.$lang[$tag[1]].':</dt><dd>';
87 if ($tag[2] == 'date') {
/template/ad-hominem/
H A Dmy_template.php229 foreach($data as $tag => $inst) {
232 echo "\t<", $tag, ' ', buildAttributes($attr);
233 if(isset($attr['_data']) || $tag == 'script') {
234 if($tag == 'script' && $attr['_data'])
239 echo '>', $attr['_data'], '</', $tag, '>';
535 foreach($tags as $tag) {
536 $label = $lang[$tag['langkey']];
537 if(!$label) $label = $tag['langkey'] . ':';
540 if ($tag['type'] == 'date') {
541 echo '<time datetime="' . strftime($format, $tag['valu
[all...]
/template/twigstarter/vendor/twig/twig/src/Node/
H A DNode.php28 protected $tag; variable in Twig\\Node\\Node
37 * @param string $tag The tag name associated with the Node
39 …unction __construct(array $nodes = [], array $attributes = [], int $lineno = 0, string $tag = null) argument
49 $this->tag = $tag;
94 return $this->tag;
H A DForNode.php28 …ession $seq, ?AbstractExpression $ifexpr, Node $body, ?Node $else, int $lineno, string $tag = null) argument
30 $body = new Node([$body, $this->loop = new ForLoopNode($lineno, $tag)]);
33 $body = new IfNode(new Node([$ifexpr, $body]), null, $lineno, $tag);
41 … parent::__construct($nodes, ['with_loop' => true, 'ifexpr' => null !== $ifexpr], $lineno, $tag);
H A DFlushNode.php23 public function __construct(int $lineno, string $tag) argument
25 parent::__construct([], [], $lineno, $tag);
H A DAutoEscapeNode.php29 public function __construct($value, Node $body, int $lineno, string $tag = 'autoescape') argument
31 parent::__construct(['body' => $body], ['value' => $value], $lineno, $tag);
H A DBlockReferenceNode.php24 public function __construct(string $name, int $lineno, string $tag = null) argument
26 parent::__construct([], ['name' => $name], $lineno, $tag);
H A DDoNode.php24 public function __construct(AbstractExpression $expr, int $lineno, string $tag = null) argument
26 parent::__construct(['expr' => $expr], [], $lineno, $tag);
H A DPrintNode.php25 public function __construct(AbstractExpression $expr, int $lineno, string $tag = null) argument
27 parent::__construct(['expr' => $expr], [], $lineno, $tag);
H A DSpacelessNode.php27 public function __construct(Node $body, int $lineno, string $tag = 'spaceless') argument
29 parent::__construct(['body' => $body], [], $lineno, $tag);
H A DBlockNode.php24 public function __construct(string $name, Node $body, int $lineno, string $tag = null) argument
26 parent::__construct(['body' => $body], ['name' => $name], $lineno, $tag);
H A DForLoopNode.php23 public function __construct(int $lineno, string $tag = null) argument
25 …parent::__construct([], ['with_loop' => false, 'ifexpr' => false, 'else' => false], $lineno, $tag);
/template/twigstarter/vendor/twig/twig/src/Sandbox/
H A DSecurityPolicy.php69 foreach ($tags as $tag) {
70 if (!\in_array($tag, $this->allowedTags)) {
71 … throw new SecurityNotAllowedTagError(sprintf('Tag "%s" is not allowed.', $tag), $tag);
/template/darkclean/
H A DREADME.rst18 - Keywords - user defined meta tag for every generated page
19 - Description - user defined meta tag for every generated page
52 keywords Keywords META tag. This tag is inserted to every rendered page.
55 description Description META tag. This tag is inserted on every rendered page
/template/twigstarter/vendor/twig/twig/src/Node/Expression/
H A DParentExpression.php24 public function __construct(string $name, int $lineno, string $tag = null) argument
26 parent::__construct([], ['output' => false, 'name' => $name], $lineno, $tag);

12345678910>>...17