Home
last modified time | relevance | path

Searched full:template (Results 1 – 25 of 1975) sorted by relevance

12345678910>>...79

/plugin/diagramsnet/lib/templates/
Dindex.xml47 <template url="basic/classes.xml" title="classDiagram" libs="general;uml" tags="classDiagram;Classe…
48 <template url="basic/flowchart.xml" title="flowchart" libs="general;flowchart" tags="flowchart;Flow…
49 <template url="basic/orgchart.xml" title="orgChart" libs="general;basic;arrows" tags="orgChart;Orgc…
50 <template url="basic/swimlanes.xml" title="swimlaneDiagram" libs="general;flowchart;bpmn" tags="swi…
51 <template url="basic/erd.xml" title="entityRelationshipDiagram" libs="general;er" tags="entityRelat…
52 <template url="basic/sequence.xml" title="Sequence Diagram" tags="Sequence;Diagram;Sequence"/>
53 <template url="basic/kanban.xml" title="Simple Kanban Board" tags="Simple;Kanban;Board;Kanban"/>
54 <template url="basic/cross.xml" title="Cross-Functional Flowchart" tags="Cross-Functional;Flowchart…
55 <template url="business/accd.xml" name="Accd" libs="general" tags="Accd"/>
56 <template url="business/archimate.xml" name="Archimate" libs="general;archimate3" tags="Archimate"/>
[all …]
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DHelpers.php215 * @param \Handlebars\Template $template template that is being rendered
218 * @param string $source part of template that is wrapped
223 public function helperIf($template, $context, $args, $source) argument
225 $tpl = $template->getEngine()->loadString('{{#if ' . $args . '}}' . $source . '{{/if}}');
237 $template->setStopToken($token);
238 $buffer = $template->render($context);
239 $template->setStopToken(false);
240 $template->discard();
246 $template->setStopToken($node['name']);
247 $template->discard();
[all …]
/plugin/onlineordering/
Dsend_form.php63 $template = @file_get_contents(DOKU_PLUGIN.'onlineordering/template_'.$conf['lang'].'.txt'); variable
66 $template = str_replace('{title}', $form['title'], $template); variable
67 $template = str_replace('{firstname}', $form['firstname'], $template); variable
68 $template = str_replace('{lastname}', $form['lastname'], $template); variable
69 $template = str_replace('{postcode}', $form['postcode'], $template); variable
70 $template = str_replace('{street}', $form['street'], $template); variable
71 $template = str_replace('{place}', $form['place'], $template); variable
72 $template = str_replace('{country}', $form['country'], $template); variable
73 $template = str_replace('{remarks}', $form['remarks'], $template); variable
75 $template = str_replace('{ticket}', $ticket, $template); variable
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
DTemplateTest.php22 use Twig\Template; alias
31 $template = $this->getMockForAbstractClass('\Twig\Template', [], '', false);
32 $template->displayBlock('foo', [], ['foo' => [new \stdClass(), 'foo']]);
38 public function testGetAttributeExceptions($template, $message) argument
40 $templates = ['index' => $template];
42 $template = $env->load('index');
55 $template->render($context);
80 …ption.test }}', 'An exception has been thrown during the rendering of a template ("Hey! Don\'t try…
93 $template = new Twig_TemplateTest($twig);
96 $template->getAttribute($object, $item, [], 'any');
[all …]
DLexerTest.php32 $template = '{% § %}';
35 $stream = $lexer->tokenize(new Source($template, 'index'));
43 $template = '{{ §() }}';
46 $stream = $lexer->tokenize(new Source($template, 'index'));
54 $template = '{{ {"a":{"b":"c"}} }}';
56 $this->assertEquals(2, $this->countToken($template, Token::PUNCTUATION_TYPE, '{'));
57 $this->assertEquals(2, $this->countToken($template, Token::PUNCTUATION_TYPE, '}'));
60 protected function countToken($template, $type, $value = null) argument
63 $stream = $lexer->tokenize(new Source($template, 'index'));
80 $template = "foo\n"
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/
DTemplateWrapper.php15 * Exposes a template to userland.
22 private $template; variable in Twig\\TemplateWrapper
30 public function __construct(Environment $env, Template $template) argument
33 $this->template = $template;
37 * Renders the template.
39 * @param array $context An array of parameters to pass to the template
41 * @return string The rendered template
47 return $this->template->render($context, \func_num_args() > 1 ? func_get_arg(1) : []);
51 * Displays the template.
53 * @param array $context An array of parameters to pass to the template
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
Dinclude.rst7 The ``include`` function returns the rendered content of a template:
11 {{ include('template.html') }}
19 The context is passed by default to the template but you can also pass
24 …{# template.html will have access to the variables from the current context and the additional one…
25 {{ include('template.html', {foo: 'bar'}) }}
33 {{ include('template.html', {foo: 'bar'}, with_context = false) }}
38 {{ include('template.html', with_context = false) }}
40 And if the expression evaluates to a ``\Twig\Template`` or a
43 // {{ include(template) }}
46 $template = $twig->loadTemplate('some_template.twig');
[all …]
/plugin/doodle4/
Ddoodle_template.php3 * This is the HTML template for the doodle table.
7 * The variable $template will be inherited from syntax.php and can be used here.
11 $template = $this->template; variable
12 $c = count($template['choices']);
13 $c1 = count($template['doodleData']);
18 <form action="<?php echo wl() ?>" method="post" name="doodle__form" id="<?php echo $template['formI…
23 <input type="hidden" name="formId" value="<?php echo $template['formId'] ?>" >
29 if ($template['userlist'] == 'vertical'){
37 <?php echo $template['title'] ?>
42 <?php foreach ($template['choices'] as $choice) { ?>
[all …]
/plugin/icalevents/lang/en/
Dsettings.php9 $lang['template:default'] = '"default" template';
10 $lang['template:list'] = '"list" template';
11 $lang['template:table'] = '"table" template';
12 $lang['template:table_without_description'] = '"table_without_description" template';
13 $lang['template:custom1'] = '"custom1" template';
14 $lang['template:custom2'] = '"custom2" template';
15 $lang['template:custom3'] = '"custom3" template';
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
Dinclude.rst4 The ``include`` statement includes a template and returns the rendered content
20 template outputs its rendered contents in the current scope; a tag should
23 * The rendered template can be more easily stored in a variable when using
28 {% set content %}{% include 'template.html' %}{% endset %}
32 {% set content = include('template.html') %}
46 …{# template.html will have access to the variables from the current context and the additional one…
47 {% include 'template.html' with {'foo': 'bar'} %}
50 {% include 'template.html' with vars %}
57 {% include 'template.html' with {'foo': 'bar'} only %}
62 {% include 'template.html' only %}
[all …]
Dextends.rst4 The ``extends`` tag can be used to extend a template from another one.
12 Let's define a base template, ``base.html``, which defines a simple HTML
38 All the ``block`` tag does is to tell the template engine that a child
39 template may override those portions of the template.
41 Child Template
44 A child template might look like this:
64 The ``extends`` tag is the key here. It tells the template engine that this
65 template "extends" another template. When the template system evaluates this
66 template, first it locates the parent. The extends tag should be the first tag
67 in the template.
[all …]
Duse.rst11 template blocks reusable without using inheritance.
13 Template inheritance is one of the most powerful features of Twig but it is
14 limited to single inheritance; a template can only extend one other template.
15 This limitation makes template inheritance simple to understand and easy to
38 ``blocks.html`` into the current template (it's like macros, but for blocks):
47 main template. The code is mostly equivalent to the following one (the
60 The ``use`` tag only imports a template if it does not extend another
61 template, if it does not define macros, and if the body is empty. But it
67 passed to the template, the template reference cannot be an expression.
69 The main template can also override any imported block. If the template
[all …]
/plugin/xslfo/
Ddefault.xsl14 <xsl:template match="/">
29 <xsl:call-template name="header"/>
35 <xsl:call-template name="footer"/>
44 </xsl:template>
48 <xsl:template name="header">
64 </xsl:template>
65 <xsl:template name="footer">
84 </xsl:template>
89 <xsl:template match="document">
95 </xsl:template>
[all …]
/plugin/mellelexport/
Dmapping.php3 // replacement = The pattern to replace bzw. to split the template
4 // template = template with replacement
6 // subpattern = when there are additional parts in the template which have to be replaced (ex. h1 a…
15 'template' => '<p style="ps-0" dir="ltr">NORMAL_TEXT</p>',
23 'template' => '<c style="cs-0">CDATA</c>',
31 'template' => '<p style="ps-6" dir="ltr">
51 'template' => '<c style="cs-0" lang="tl-0">{{NOTE}}<note stream="nsm-0">
67 …"template" => '<c style="cs-0"><hyperlink display-as-link="yes"><display-text><c style="cs-0"…
75 #'template' => '&qout;',
76 'template' => '<c style="cs-0">"</c>',
[all …]
Dmapping-old.php29 // replacement = The pattern to replace bzw. to split the template
30 // template = template with replacement
32 …// subpattern = when there are additional parts in the template which have to be replaced (ex. h1 …
44 'template' => "<p style='ps-0' dir='ltr'>normaler Text</p>",
45 // 'template' => "<c style='cs-0'>normaler Text</c>",
53 'template' => "<c style='cs-0'>CDATA</c>",
60 'template' => "<p style='ps-1' dir='ltr'>
70 // Template contains another template of "normaler Text"!
71 // 'template' => "<p style='ps-0' dir='ltr'>
79 'template' => "<c style='cs-3'>{{NOTE}}<note stream='nsm-0'>
[all …]
/plugin/authucenter/lib/uc_client/control/
Dfeed.php88 function _parsetemplate($template) { argument
89 $template = str_replace(array("\r", "\n"), '', $template);
90 $template = str_replace(array('<br>', '<br />', '<BR>', '<BR />'), "\n", $template);
91 $template = str_replace(array('<b>', '<B>'), '[B]', $template);
92 $template = str_replace(array('<i>', '<I>'), '[I]', $template);
93 $template = str_replace(array('<u>', '<U>'), '[U]', $template);
94 $template = str_replace(array('</b>', '</B>'), '[/B]', $template);
95 $template = str_replace(array('</i>', '</I>'), '[/I]', $template);
96 $template = str_replace(array('</u>', '</U>'), '[/U]', $template);
97 $template = dhtmlspecialchars($template);
[all …]
/plugin/templateconfhelper/
DREADME3 various functions to help with template management.
4 * template inheritance with cascade [[#inheritance]]
9 changes template based on users Selection via GET and saves it in the Session.
13 * $_GET[utpl] /^[\w-]+$/ - override template
21 * tpl_loadconfig( $tpl ) - reload config for template, called on switch
25 uses FETCH_MEDIA_STATUS event to hook into fetch.php. This allows to have template files outside of…
30 * $_GET[template /^[\w-]*$/ - template dir to search for the file
32 …rewrite ^/lib/tpl/((.*)/)?images/(.*) /lib/exe/fetch.php?mode=styleimg&media=$3&template=$2 l…
36template.php// use following new config settings to look up templatefiles. Files that dont exist i…
38 * template, dokuwiki template setting possibly overwritten by template switch
[all …]
/plugin/diagramsnet/lib/math/extensions/MathML/
Dmml3.js19template match="*"> <xsl:copy> <xsl:copy-of select="@*"/> <xsl:apply-templates/> </xsl:copy></xs…
/plugin/randomtables/table-roller/src/Generator/
DBaseGenerator.php11 protected string $template; variable in TableRoller\\Generator\\BaseGenerator
20 * @param string $template
29 * @param string $template
31 public function setTemplate(string $template): void argument
33 $this->template = $template;
59 $template = $this->getTemplate();
60 } elseif (!empty($this->template)) {
61 $template = $this->template;
64 if (empty($template)) {
65 throw new \Exception('getTemplate()/template property is empty');
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/doc/
Drecipes.rst34 template names as keys and template contents as values (as done by
66 and sometimes decorated with a layout. As Twig layout template names can be
81 When including a template, its name does not need to be a string. For
88 If ``var`` evaluates to ``index``, the ``index_foo.html`` template will be
91 As a matter of fact, the template name can be any valid expression, such as
98 Overriding a Template that also extends itself
101 A template can be customized in two different ways:
103 * *Inheritance*: A template *extends* a parent template and overrides some
107 template it finds in a list of configured directories; a template found in a
110 But how do you combine both: *replace* a template that also extends itself
[all …]
/plugin/doodle3/
Ddoodle_template.php3 * This is the HTML template for the doodle table.
7 * The variable $template will be inherited from syntax.php and can be used here.
11 $template = $this->template; variable
12 $c = count($template['choices']);
17 <form action="<?php echo wl() ?>" method="post" name="doodle__form" id="<?php echo $template['formI…
22 <input type="hidden" name="formId" value="<?php echo $template['formId'] ?>" >
31 <?php echo $template['title'] ?>
36 <?php foreach ($template['choices'] as $choice) { ?>
37 …<td class="centeralign" style="width:<?php echo $template['fieldwidth'] ?>"><?php echo $choice ?><…
41 <?php foreach ($template['doodleData'] as $fullname => $userData) { ?>
[all …]
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/Loader/
DArrayLoader.php13 * Mustache Template array Loader implementation.
15 * An ArrayLoader instance loads Mustache Template source by name from an initial array:
25 * is set. It can also be used as a quick-and-dirty Template loader.
34 * @param array $templates Associative array of Template source (default: array())
42 * Load a Template.
44 * @throws Mustache_Exception_UnknownTemplateException If a template file is not found
48 * @return string Mustache Template source
60 * Set an associative array of Template sources for this loader.
70 * Set a Template source by name.
73 * @param string $template Mustache Template source
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/Error/
DError.php15 use Twig\Template; alias
21 * an error occurs during the loading of a template, when a syntax error
22 * is detected in a template, or when rendering a template. Other
23 * errors must use regular PHP exception classes (like when the template
26 * To help debugging template issues, this class tracks the original template
29 * Whenever possible, you must set these information (original template name
53 * disable automatic guessing of the original template name
62 * @param int $lineno The template line where the error occurred
71 // for compat with the Twig C ext., passing the template name as string is accepted
164 * Gets the template line where the error occurred.
[all …]
/plugin/doodle2/
Ddoodle_template.php3 * This is the HTML template for the doodle table.
7 * The variable $template will be inherited from syntax.php and can be used here.
11 $template = $this->template; variable
12 $c = count($template['choices']);
16 <form action="<?php echo wl() ?>" method="post" name="doodle__form" id="<?php echo $template['formI…
21 <input type="hidden" name="formId" value="<?php echo $template['formId'] ?>" >
29 <?php echo $template['title'] ?>
34 <?php foreach ($template['choices'] as $choice) { ?>
39 <?php foreach ($template['doodleData'] as $fullname => $userData) { ?>
52 <th class="rightalign"><b><?php echo $template['result'] ?></b></th>
[all …]
/plugin/freechat/phpfreechat/lib/csstidy-1.2/
Dclass.csstidy_print.php72 $this->template =& $css->template;
131 $template =& $this->template;
134 $template = array_map('strip_tags', $template);
142 $output .= $template[0].'@charset '.$template[5].$this->charset.$template[6];
147 $output .= $template[0].'@import '.$template[5].$this->import[$i].$template[6];
152 $output .= $template[0].'@namespace '.$template[5].$this->namespace.$template[6];
155 $output .= $template[13];
164 $out .= $template[0].$this->_htmlsp($token[1], $plain).$template[1];
170 …$out .= ($token[1]{0} !== '@') ? $template[2].$this->_htmlsp($token[1], $plain) : $template[0].$th…
171 $out .= $template[3];
[all …]

12345678910>>...79