Home
last modified time | relevance | path

Searched refs:name (Results 1 – 25 of 781) sorted by relevance

12345678910>>...32

/template/twigstarter/vendor/twig/twig/src/Node/
DNode.php30 private $name; variable in Twig\\Node\\Node
41 foreach ($nodes as $name => $node) {
43 …t($node) ? \get_class($node) : (null === $node ? 'null' : \gettype($node)), $name, static::class));
55 foreach ($this->attributes as $name => $value) {
56 … $attributes[] = sprintf('%s: %s', $name, str_replace("\n", '', var_export($value, true)));
62 foreach ($this->nodes as $name => $node) {
63 $len = \strlen($name) + 4;
69 $repr[] = sprintf(' %s: %s', $name, ltrim(implode("\n", $noderepr)));
100 public function hasAttribute($name) argument
102 return \array_key_exists($name, $this->attributes);
[all …]
/template/twigstarter/vendor/twig/twig/src/Loader/
DFilesystemLoader.php139 public function getSourceContext($name) argument
141 if (null === ($path = $this->findTemplate($name)) || false === $path) {
142 return new Source('', $name, '');
145 return new Source(file_get_contents($path), $name, $path);
148 public function getCacheKey($name) argument
150 if (null === ($path = $this->findTemplate($name)) || false === $path) {
161 public function exists($name) argument
163 $name = $this->normalizeName($name);
165 if (isset($this->cache[$name])) {
169 return null !== ($path = $this->findTemplate($name, false)) && false !== $path;
[all …]
DArrayLoader.php44 * @param string $name The template name
47 public function setTemplate($name, $template) argument
49 $this->templates[$name] = $template;
52 public function getSourceContext($name) argument
54 $name = (string) $name;
55 if (!isset($this->templates[$name])) {
56 throw new LoaderError(sprintf('Template "%s" is not defined.', $name));
59 return new Source($this->templates[$name], $name);
62 public function exists($name) argument
64 return isset($this->templates[$name]);
[all …]
DChainLoader.php50 public function getSourceContext($name) argument
54 if (!$loader->exists($name)) {
59 return $loader->getSourceContext($name);
65 …throw new LoaderError(sprintf('Template "%s" is not defined%s.', $name, $exceptions ? ' ('.implode…
68 public function exists($name) argument
70 if (isset($this->hasSourceCache[$name])) {
71 return $this->hasSourceCache[$name];
75 if ($loader->exists($name)) {
76 return $this->hasSourceCache[$name] = true;
80 return $this->hasSourceCache[$name] = false;
[all …]
DLoaderInterface.php27 * @param string $name The template logical name
33 public function getSourceContext($name); argument
38 * @param string $name The name of the template to load
44 public function getCacheKey($name); argument
49 * @param string $name The template name
57 public function isFresh($name, $time); argument
62 * @param string $name The name of the template to check if we can load
66 public function exists($name); argument
/template/comicslate/fonts/
Ddsp_fetcher_optim.svg1name=".notdef" horiz-adv-x="1000" d="M0 0v1250l1000 1V0H0zm125 125h750v1000H125V125zm250 625H250v2…
Ddat_fest_comic_optim.svg1name=".notdef" horiz-adv-x="1536" d="M256 0v1280h1024V0H256zm32 32h960v1216H288V32z"/><glyph glyph…
Daxolotl_comic_optim.svg1name=".notdef" horiz-adv-x="1190" d="M146 59q619-59 862-36 49 407 17 863-179 27-835 48-50-424-44-8…
/template/twigstarter/vendor/twig/twig/src/
DEnvironment.php290 * @param string $name The name for which to calculate the template class name
297 public function getTemplateClass($name, $index = null) argument
299 $key = $this->getLoader()->getCacheKey($name).$this->optionsHash;
307 * @param string|TemplateWrapper $name The template name
316 public function render($name, array $context = []) argument
318 return $this->load($name)->render($context);
324 * @param string|TemplateWrapper $name The template name
331 public function display($name, array $context = []) argument
333 $this->load($name)->display($context);
339 * @param string|TemplateWrapper $name The template name
[all …]
DTemplate.php136 * @param string $name The block name to display from the parent
140 public function displayParentBlock($name, array $context, array $blocks = []) argument
142 if (isset($this->traits[$name])) {
143 $this->traits[$name][0]->displayBlock($name, $context, $blocks, false);
145 $parent->displayBlock($name, $context, $blocks, false);
147 …ntf('The template has no parent and no traits defining the "%s" block.', $name), -1, $this->getSou…
157 * @param string $name The block name to display
162 …public function displayBlock($name, array $context, array $blocks = [], $useBlocks = true, self $t… argument
164 if ($useBlocks && isset($blocks[$name])) {
165 $template = $blocks[$name][0];
[all …]
DToken.php121 $name = 'EOF_TYPE';
124 $name = 'TEXT_TYPE';
127 $name = 'BLOCK_START_TYPE';
130 $name = 'VAR_START_TYPE';
133 $name = 'BLOCK_END_TYPE';
136 $name = 'VAR_END_TYPE';
139 $name = 'NAME_TYPE';
142 $name = 'NUMBER_TYPE';
145 $name = 'STRING_TYPE';
148 $name = 'OPERATOR_TYPE';
[all …]
DFileExtensionEscapingStrategy.php30 * @param string $name The template name
34 public static function guess($name) argument
36 if (\in_array(substr($name, -1), ['/', '\\'])) {
40 if ('.twig' === substr($name, -5)) {
41 $name = substr($name, 0, -5);
44 $extension = pathinfo($name, \PATHINFO_EXTENSION);
/template/m1/
Dscript.js48 execute: function(action, name, callback) { argument
50 if(typeof name === 'function') {
51 callback = name;
52 name = 'sidr';
54 else if(!name) {
55 name = 'sidr';
59 var $menu = $('#' + name),
71 bodyClass = (name === 'sidr' ? 'sidr-open' : 'sidr-open ' + name + '-open');
83 methods.open(name);
124 sidrOpened = name;
[all …]
/template/strap/vendor/salesforce/handlebars-php/src/Handlebars/Cache/
H A DAPC.php23 * @param string $name Cache id
27 public function get($name) argument
29 if (apc_exists($name)) {
30 return apc_fetch($name);
38 * @param string $name cache id
43 public function set($name, $value) argument
45 apc_store($name, $value);
51 * @param string $name Cache id
55 public function remove($name) argument
57 apc_delete($name);
H A DDummy.php25 * @param string $name Cache id
29 public function get($name) argument
31 if (array_key_exists($name, $this->cache)) {
32 return $this->cache[$name];
40 * @param string $name cache id
45 public function set($name, $value) argument
47 $this->cache[$name] = $value;
53 * @param string $name Cache id
57 public function remove($name) argument
59 unset($this->cache[$name]);
H A DDisk.php61 * @param string $name Name of the cache item
65 private function getPath($name) argument
68 $this->prefix . $name . $this->suffix;
74 * @param string $name Cache id
78 public function get($name) argument
80 $path = $this->getPath($name);
89 * @param string $name cache id
94 public function set($name, $value) argument
96 $path = $this->getPath($name);
104 * @param string $name Cache id
[all …]
/template/twigstarter/vendor/twig/twig/src/Error/
DError.php42 private $name; variable in Twig\\Error\\Error
63 $name = null;
66 $name = $source;
68 $name = $source->getName();
74 $this->name = $name;
118 return $this->name ? new Source($this->sourceCode, $this->name, $this->sourcePath) : null;
127 $this->sourceCode = $this->name = $this->sourcePath = null;
130 $this->name = $source->getName();
172 if ($this->name) {
173 …if (\is_string($this->name) || (\is_object($this->name) && method_exists($this->name, '__toString'…
[all …]
/template/strap/resources/background/
H A Dbackground1.svg10 <g id="Group_243" data-name="Group 243" transform="translate(-1838 1118)">
11 …<rect id="Rectangle_689" data-name="Rectangle 689" class="cls-1" width="89" height="75" transform=…
12 …<rect id="Rectangle_690" data-name="Rectangle 690" class="cls-1" width="89" height="75" transform=…
13 …<rect id="Rectangle_691" data-name="Rectangle 691" class="cls-1" width="89" height="75" transform=…
14 …<rect id="Rectangle_692" data-name="Rectangle 692" class="cls-1" width="89" height="75" transform=…
15 …<rect id="Rectangle_694" data-name="Rectangle 694" class="cls-1" width="89" height="75" transform=…
16 …<rect id="Rectangle_695" data-name="Rectangle 695" class="cls-1" width="89" height="75" transform=…
17 …<rect id="Rectangle_696" data-name="Rectangle 696" class="cls-1" width="89" height="75" transform=…
18 …<rect id="Rectangle_697" data-name="Rectangle 697" class="cls-1" width="89" height="75" transform=…
19 …<rect id="Rectangle_698" data-name="Rectangle 698" class="cls-1" width="89" height="75" transform=…
[all …]
/template/twigstarter/vendor/twig/twig/src/Node/Expression/
DNameExpression.php25 public function __construct(string $name, int $lineno) argument
27 …parent::__construct([], ['name' => $name, 'is_defined_test' => false, 'ignore_strict_check' => fal…
32 $name = $this->getAttribute('name');
42 ->string($name)
48 ->string($name)
50 ->string($name)
55 $compiler->raw($this->specialVars[$name]);
59 ->string($name)
66 ->string($name)
72 ->string($name)
[all …]
/template/strap/vendor/salesforce/handlebars-php/src/Handlebars/
H A DHelpers.php76 foreach ($helpers as $name => $helper) {
77 $this->add($name, $helper);
85 * @param string $name helper name
91 public function add($name, $helper) argument
94 throw new InvalidArgumentException("$name Helper is not a callable.");
96 $this->helpers[$name] = $helper;
102 * @param string $name helper name
106 public function has($name) argument
108 return array_key_exists($name, $this->helpers);
114 * @param string $name helper name
[all …]
H A DHandlebars.php216 * @param string $name helper name
221 public function addHelper($name, $helper) argument
223 $this->getHelpers()->add($name, $helper);
229 * @param string $name helper name
232 public function getHelper($name) argument
234 return $this->getHelpers()->__get($name);
240 * @param string $name helper name
243 public function hasHelper($name) argument
245 return $this->getHelpers()->has($name);
251 * @param string $name helper name
[all …]
/template/strap/vendor/salesforce/handlebars-php/src/Handlebars/Loader/
H A DFilesystemLoader.php79 * @param string $name template name
83 public function load($name) argument
85 if (!isset($this->_templates[$name])) {
86 $this->_templates[$name] = $this->loadFile($name);
89 return new HandlebarsString($this->_templates[$name]);
95 * @param string $name template name
100 protected function loadFile($name) argument
102 $fileName = $this->getFileName($name);
105 throw new \InvalidArgumentException('Template ' . $name . ' not found.');
114 * @param string $name template name
[all …]
/template/strap/ComboStrap/
H A DMetadataSingleArrayStore.php57 foreach ($metadata::getOldPersistentNames() as $name) {
58 $value = $this->data[$name] ?? null;
61 unset($this->data[$name]);
92 public function getFromName(string $name, $default = null) argument
95 $value = $this->data[$name] ?? null;
102 public function setFromPersistentName(string $name, $value, $default = null) argument
104 $actualValue = $this->data[$name] ?? null;
109 $name = $this->toNormalizedKey($name);
112 unset($this->data[$name]);
115 $this->data[$name] = $value;
[all …]
H A DBrand.php45 * @param string $name
47 private function __construct(string $name) argument
50 $this->name = $name;
61 $this->brandDict = $brandDictionary[$this->name] ?? null;
62 switch ($this->name) {
167 private $name; variable in ComboStrap\\Brand
187 private static function getBrandNameFromAbbr(string $name) argument
199 if (isset(self::$BRAND_ABBR[$name])) {
200 return self::$BRAND_ABBR[$name];
202 return $name;
[all …]
/template/strap/ComboStrap/Meta/Store/
H A DMetadataDokuWikiStore.php140 $name = $metadata->getName();
151 $this->setFromPersistentName($name, $persistentValue, $defaultValue);
182 * @param string $name
186 public function getFromName(string $name, $default = null) argument
195 $value = $data[$name] ?? null;
219 * @param string $name
224 …public function setFromPersistentName(string $name, $value, $default = null): MetadataDokuWikiStore argument
226 $oldValue = $this->getFromName($name);
255 $METADATA_RENDERERS[$wikiId][self::CURRENT_METADATA][$name] = $value;
256 $METADATA_RENDERERS[$wikiId][self::PERSISTENT_DOKUWIKI_KEY][$name] = $value;
[all …]

12345678910>>...32