Home
last modified time | relevance | path

Searched full:templates (Results 1 – 25 of 993) sorted by relevance

12345678910>>...40

/plugin/findologicxmlexport/vendor/twig/twig/src/Loader/
DArrayLoader.php33 protected $templates = []; variable in Twig\\Loader\\ArrayLoader
36 …* @param array $templates An array of templates (keys are the names, and values are the source cod…
38 public function __construct(array $templates = []) argument
40 $this->templates = $templates;
51 $this->templates[(string) $name] = $template;
59 if (!isset($this->templates[$name])) {
63 return $this->templates[$name];
69 if (!isset($this->templates[$name])) {
73 return new Source($this->templates[$name], $name);
78 return isset($this->templates[(string) $name]);
[all …]
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/Loader/
DArrayLoader.php29 private $templates; variable in Mustache_Loader_ArrayLoader
34 * @param array $templates Associative array of Template source (default: array())
36 public function __construct(array $templates = array()) argument
38 $this->templates = $templates;
52 if (!isset($this->templates[$name])) {
56 return $this->templates[$name];
62 * @param array $templates
64 public function setTemplates(array $templates) argument
66 $this->templates = $templates;
77 $this->templates[$name] = $template;
DInlineLoader.php13 * A Mustache Template loader for inline templates.
15 * With the InlineLoader, templates can be defined at the end of any PHP source
30 * Templates are deliniated by lines containing only `@@ name`.
54 protected $templates; variable in Mustache_Loader_InlineLoader
57 * The InlineLoader requires a filename and offset to process templates.
65 * file as the inline templates. If the templates are located in another
68 * @param string $fileName The file to parse for inline templates
69 * @param int $offset A string offset for the start of the templates.
100 if (!array_key_exists($name, $this->templates)) {
104 return $this->templates[$name];
[all …]
DFilesystemLoader.php20 …y the most useful Mustache Loader implementation. It can be used for partials and normal Templates:
31 private $templates = array(); variable in Mustache_Loader_FilesystemLoader
39 * // The filename extension used for Mustache templates. Defaults to '.mustache'
81 if (!isset($this->templates[$name])) {
82 $this->templates[$name] = $this->loadFile($name);
85 return $this->templates[$name];
126 * Only check if baseDir is a directory and requested templates are files if
/plugin/authgooglesheets/vendor/google/apiclient-services/src/TagManager/Resource/
DAccountsContainersWorkspacesTemplates.php25 * The "templates" collection of methods.
29 * $templates = $tagmanagerService->templates;
35 * Creates a GTM Custom Template. (templates.create)
50 * Deletes a GTM Template. (templates.delete)
53 * s/{account_id}/containers/{container_id}/workspaces/{workspace_id}/templates/
64 * Gets a GTM Template. (templates.get)
67 * s/{account_id}/containers/{container_id}/workspaces/{workspace_id}/templates/
79 * Lists all GTM Templates of a GTM container workspace.
80 * (templates.listAccountsContainersWorkspacesTemplates)
97 * Reverts changes to a GTM Template in a GTM Workspace. (templates.revert)
[all …]
/plugin/pdftools/
DREADME.md9 * A set of templates for different purposes which can be installed directly from the admin section
10 * Upload your own templates in the admin section and option to remove templates
12 * Additional replacements which can be used in the templates
17 …which ist shown a the bottom right of the screen. You can configure the templates which are the di…
90 ## Set of templates
92 The pdftools-plugin contains a set of templates which can be installed in the admin section. These
98 ## Upload pdf-templates
100 Upload form for uploading your own pdf-templates.
104 ## Erase pdf-templates
106 Button to delete templates from dw2pdf.
/plugin/findologicxmlexport/vendor/twig/twig/doc/
Dapi.rst6 the application and not those who are creating Twig templates.
13 configuration and extensions, and are used to load templates from the file
17 initialization and use that to load templates. In some cases it's however
21 The simplest way to configure Twig to load templates for your application
27 $loader = new \Twig\Loader\FilesystemLoader('/path/to/templates');
33 that looks up the templates in the ``/path/to/templates/`` folder. Different
35 templates from a database or other resources.
41 the compiled templates to avoid the parsing phase for sub-sequent
43 the evaluated templates. For such a need, you can use any available PHP
46 Rendering Templates
[all …]
Drecipes.rst16 To easily remove all deprecated feature usages from your templates, write and
25 print_r($deprecations->collectDir(__DIR__.'/templates'));
27 The ``collectDir()`` method compiles all templates found in a directory,
32 If your templates are not stored on the filesystem, use the ``collect()``
53 they won't be generated when templates are already cached.
113 Let's say that your templates are loaded from both ``.../templates/mysite``
114 and ``.../templates/default`` in this order. The ``page.twig`` template,
115 stored in ``.../templates/default`` reads as follows:
126 ``.../templates/mysite``. And if you want to extend the original template, you
131 {# page.twig in .../templates/mysite #}
[all …]
/plugin/loadskin/
Dhelper.php18 * Returns an array of available templates to choose from
40 * Builds a select box with all available templates
42 * or show only two templates for mobile switcher: standard plus mobile template
56 // templates for mobile switcher
57 $templates = array(
62 // all templates (minus excluded templates)
64 $templates = array_diff($this->getTemplates(),$excludeTemplates);
75 $templates,
/plugin/xslfo/
Ddefault.xsl39 <xsl:apply-templates select="document" />
91 <xsl:apply-templates />
99 <xsl:apply-templates />
107 <xsl:apply-templates />
112 <xsl:apply-templates />
117 <xsl:apply-templates />
124 <xsl:apply-templates />
131 <xsl:apply-templates />
137 <xsl:apply-templates />
143 <xsl:apply-templates />
[all …]
/plugin/structtemplating/
DREADME.md3 Use twig templates for custom struct data rendering.
16 ### Templates subsection
19 `lib/plugin/structtemplating/assets/templates/schema` directory on the server.
21 Currently only templates for schema page data are supported. The filename of
39 `assets/style/` directory and track them together with your templates.
41 ### Tracking Changes in Templates and Stylesheets
44 the root for a git repository to put your templates and stylesheets under
Daction.php65 __DIR__ . '/assets/templates/schema',
66 __DIR__ . '/assets/templates/common',
126 __DIR__ . '/assets/templates/aggregation',
127 __DIR__ . '/assets/templates/common',
148 $templates = array();
150 $templates[] = $search->getSchemas()[0]->getTable() . '.twig';
152 $templates[] = $table->getID() . '.twig';
167 foreach ($templates as $template) {
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Extension/
DSandboxTest.php21 protected static $templates; variable in Twig_Tests_Extension_SandboxTest
31 self::$templates = [
54 $twig = $this->getEnvironment(true, [], self::$templates, ['block']);
60 $twig = $this->getEnvironment(false, [], self::$templates);
66 $twig = $this->getEnvironment(true, [], self::$templates);
79 $twig = $this->getEnvironment(true, [], self::$templates);
91 $twig = $this->getEnvironment(true, [], self::$templates);
103 $twig = $this->getEnvironment(true, [], self::$templates);
173 … $twig = $this->getEnvironment(true, [], self::$templates, [], [], ['FooObject' => '__toString']);
181 $twig = $this->getEnvironment(false, [], self::$templates);
[all …]
/plugin/diagramsnet/lib/math/extensions/MathML/
Dmml3.js19templates/> </xsl:copy></xsl:template><xsl:template match="m:*[@dir=\'rtl\']" priority="10"> <xsl…
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Cat/
DTemplates.php22 * Class Templates
23 * Elasticsearch API name cat.templates
28 class Templates extends AbstractEndpoint class
37 return "/_cat/templates/$name";
39 return "/_cat/templates";
60 public function setName($name): Templates
/plugin/findologicxmlexport/vendor/twig/twig/src/Test/
DIntegrationTestCase.php82 public function testIntegration($file, $message, $condition, $templates, $exception, $outputs) argument
84 $this->doIntegrationTest($file, $message, $condition, $templates, $exception, $outputs);
91 …public function testLegacyIntegration($file, $message, $condition, $templates, $exception, $output… argument
93 $this->doIntegrationTest($file, $message, $condition, $templates, $exception, $outputs);
115 $templates = self::parseTemplates($match[3]);
121 $templates = self::parseTemplates($match[3]);
128 …$tests[] = [str_replace($fixturesDir.'/', '', $file), $message, $condition, $templates, $exception…
144 …protected function doIntegrationTest($file, $message, $condition, $templates, $exception, $outputs) argument
157 $loader = new ArrayLoader($templates);
228 printf("Compiled templates that failed on case %d:\n", $i + 1);
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/Util/
DDeprecationCollector.php34 * Returns deprecations for templates contained in a directory.
36 * @param string $dir A directory where templates are stored
37 * @param string $ext Limit the loaded templates by extension
53 * Returns deprecations for passed templates.
55 …* @param \Traversable $iterator An iterator of templates (where keys are template names and values…
69 // ignore templates containing syntax errors
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dataproc/
DListWorkflowTemplatesResponse.php22 protected $collection_key = 'templates';
47 public function setTemplates($templates) argument
49 $this->templates = $templates;
56 return $this->templates;
/plugin/asciidocjs/node_modules/nunjucks/src/
Dprecompile.js39 // * wrapper: function(templates, opts) {...}
41 // By default, templates are stored in a global variable used by the runtime.
52 var templates = [];
64 templates.push(filepath);
72 for (var i = 0; i < templates.length; i++) {
73 var name = templates[i].replace(path.join(input, '/'), '');
75 precompiled.push(_precompile(fs.readFileSync(templates[i], 'utf-8'), name, env));
Dprecompile-global.js3 function precompileGlobal(templates, opts) { argument
6 for (var i = 0; i < templates.length; i++) {
7 var name = JSON.stringify(templates[i].name);
8 var template = templates[i].template;
/plugin/dw2pdf/vendor/setasign/fpdi/src/
H A DFpdfTplTrait.php22 * Data of all created templates.
26 protected $templates = []; variable
104 if (!isset($this->templates[$tpl])) {
118 $template = $this->templates[$tpl];
154 if (!isset($this->templates[$tpl])) {
159 $width = $this->templates[$tpl]['width'];
160 $height = $this->templates[$tpl]['height'];
162 $width = $height * $this->templates[$tpl]['width'] / $this->templates[$tpl]['height'];
166 $height = $width * $this->templates[$tpl]['height'] / $this->templates[$tpl]['width'];
221 $this->templates[$templateId] = [
[all …]
/plugin/farmsync/meta/
DTemplateUpdates.php39 $templates = array();
41 $templates = array_merge($templates, $this->getDocumentsFromLine($this->source, $line));
43 array_unique($templates);
44 return $templates;
49 echo sprintf($this->getLang('progress:templates'), $target, $i, $total) . "</br>";
55 * However, as opposed to core- search(), this function will also return templates,
105 echo "<h3>".$this->getLang('heading:templates')."</h3>";
/plugin/pdftools/lang/en/
Dlang.php3 $lang['admin menu'] = 'PDF Templates';
14 $lang['admin title main'] = 'PDF Templates';
16 $lang['admin title manage'] = 'Manage installed templates';
20 $lang['text upload'] = "You can upload your own dw2pdf-templates. The template files must be put …
/plugin/pagesicon/script/
H A Dupload-form.js23 function updateChoices(variant, filename, pageName, templates) { argument
30 (templates[variantKey] || []).forEach(function (tpl) {
58 var templates = { variable
64 updateChoices(variant, filename, pageName, templates);
67 updateChoices(variant, filename, pageName, templates);
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
Dinclude.rst14 Included templates have access to the variables of the active context.
16 If you are using the filesystem loader, the templates are looked for in the
60 You can also provide a list of templates that are checked for existence before
68 of the templates exist, otherwise it will throw an exception.
83 * ``ignore_missing``: Whether to ignore missing templates or not

12345678910>>...40