Home
last modified time | relevance | path

Searched refs:key (Results 176 – 196 of 196) sorted by path

12345678

/template/twigstarter/vendor/twig/twig/
H A DCHANGELOG245 * fixed regression (key exists check for non ArrayObject objects)
/template/twigstarter/vendor/twig/twig/src/Cache/
H A DCacheInterface.php38 * @param string $key The cache key
41 public function write($key, $content); argument
46 * @param string $key The cache key
48 public function load($key); argument
53 * @param string $key The cache key
57 public function getTimestamp($key); argument
H A DFilesystemCache.php43 public function load($key) argument
45 if (file_exists($key)) {
46 @include_once $key;
50 public function write($key, $content) argument
52 $dir = \dirname($key);
64 $tmpFile = tempnam($dir, basename($key));
66 @chmod($key, 0666 & ~umask());
73 apc_compile_file($key);
83 public function getTimestamp($key) argument
85 if (!file_exists($key)) {
[all …]
H A DNullCache.php26 public function write($key, $content) argument
30 public function load($key) argument
34 public function getTimestamp($key) argument
/template/twigstarter/vendor/twig/twig/src/
H A DCompiler.php160 foreach ($value as $key => $v) {
165 $this->repr($key);
H A DEnvironment.php299 $key = $this->getLoader()->getCacheKey($name).$this->optionsHash;
301 …return $this->templateClassPrefix.hash(\PHP_VERSION_ID < 80100 ? 'sha256' : 'xxh128', $key).(null …
399 $key = $this->cache->generateKey($name, $mainCls);
401 … if (!$this->isAutoReload() || $this->isTemplateFresh($name, $this->cache->getTimestamp($key))) {
402 $this->cache->load($key);
409 $this->cache->write($key, $content);
410 $this->cache->load($key);
947 foreach ($this->getGlobals() as $key => $value) {
948 if (!\array_key_exists($key, $context)) {
949 $context[$key] = $value;
H A DExpressionParser.php370 $key = new ConstantExpression($token->getValue(), $token->getLine());
374 … $value = new NameExpression($key->getAttribute('value'), $key->getTemplateLine());
375 $node->addElement($value, $key);
379 $key = new ConstantExpression($token->getValue(), $token->getLine());
381 $key = $this->parseExpression();
391 $node->addElement($value, $key);
H A DParser.php121 foreach (array_pop($this->stack) as $key => $val) {
122 $this->$key = $val;
/template/twigstarter/vendor/twig/twig/src/Extension/
H A DCoreExtension.php863 $keys[] = $array->key();
871 foreach ($array as $key => $item) {
872 $keys[] = $key;
H A DDebugExtension.php53 foreach ($context as $key => $value) {
55 $vars[$key] = $value;
/template/twigstarter/vendor/twig/twig/src/Node/Expression/
H A DArrayExpression.php46 public function hasElement(AbstractExpression $key) argument
51 if ((string) $key === (string) $pair['key']) {
59 public function addElement(AbstractExpression $value, AbstractExpression $key = null) argument
61 if (null === $key) {
62 $key = new ConstantExpression(++$this->index, $value->getTemplateLine());
65 array_push($this->nodes, $key, $value);
H A DCallExpression.php204 foreach ($parameters as $key => $value) {
205 if (\is_int($key)) {
208 $arbitraryArguments->addElement($value, new ConstantExpression($key, -1));
210 unset($parameters[$key]);
/template/twigstarter/vendor/twig/twig/src/Node/
H A DModuleNode.php216 foreach ($trait->getNode('targets') as $key => $value) {
219 ->string($key)
223 ->string($key)
235 ->string($key)
237 ->string($key)
/template/twigstarter/vendor/twig/twig/src/Util/
H A DTemplateDirIterator.php32 public function key() function in Twig\\Util\\TemplateDirIterator
34 return (string) parent::key();
/template/typowiki/typowiki/
H A Ddetail.php58 foreach($fields as $key => $tag){
/template/varicolored/
H A Ddetail.php60 foreach($fields as $key => $tag){
/template/vector/
H A Dinc_detail.php50 foreach($fields as $key => $tag){
/template/wallpaper/
H A Ddetail.php58 foreach($fields as $key => $tag){
/template/white/
H A Ddetail.php59 foreach($fields as $key => $tag){
/template/writr/css/
H A Dgenericons.less122 .genericon-key:before { content: "\f427"; }
/template/zenlike/
H A Ddetail.php55 foreach($fields as $key => $tag){

12345678