/template/twigstarter/vendor/twig/twig/src/Node/Expression/ |
H A D | GetAttrExpression.php | 44 ->raw('(('.$var.' = ') 46 ->raw(') && is_array(') 47 ->raw($var) 48 ->raw(') || ') 49 ->raw($var) 51 ->raw($var) 52 ->raw('[') 68 ->raw(', ') 75 $compiler->raw(', []'); 78 $compiler->raw(', ') [all …]
|
H A D | NameExpression.php | 41 ->raw('array_key_exists(') 43 ->raw(', $context)') 47 ->raw('(isset($context[') 51 ->raw(', $context))') 58 ->raw('$context[') 60 ->raw(']') 65 ->raw('($context[') 67 ->raw('] ?? null)') 71 ->raw('(isset($context[') 79 ->raw(' does not exist.\', ') [all …]
|
H A D | ArrowFunctionExpression.php | 33 ->raw('function (') 37 $compiler->raw(', '); 41 ->raw('$__') 42 ->raw($name->getAttribute('name')) 43 ->raw('__') 47 ->raw(') use ($context, $macros) { ') 51 ->raw('$context["') 53 ->raw('"] = $__') 55 ->raw('__; ') 59 ->raw('return ') [all …]
|
H A D | MethodCallExpression.php | 31 ->raw('method_exists($macros[') 33 ->raw('], ') 35 ->raw(')') 42 ->raw('twig_call_macro($macros[') 44 ->raw('], ') 46 ->raw(', [') 51 $compiler->raw(', '); 58 ->raw('], ') 60 ->raw(', $context, $this->getSourceContext())');
|
H A D | BlockReferenceExpression.php | 45 ->raw(";\n"); 60 ->raw(', ') 62 ->raw(', ') 64 ->raw(')') 68 $compiler->raw(sprintf('->%s', $method)); 76 ->raw('(') 78 ->raw(', $context'); 81 $compiler->raw(', $blocks'); 84 return $compiler->raw(')');
|
H A D | CallExpression.php | 30 $compiler->raw($callable); 49 $compiler->raw(sprintf('->%s', $callable[1])); 60 $compiler->raw(')'); 66 $compiler->raw($isArray ? '[' : '('); 71 $compiler->raw('$this->env'); 77 $compiler->raw(', '); 79 $compiler->raw('$context'); 86 $compiler->raw(', '); 95 $compiler->raw(', '); 106 $compiler->raw(', '); [all …]
|
H A D | ConditionalExpression.php | 27 ->raw('((') 29 ->raw(') ? (') 31 ->raw(') : (') 33 ->raw('))')
|
H A D | ArrayExpression.php | 70 $compiler->raw('['); 74 $compiler->raw(', '); 80 ->raw(' => ') 84 $compiler->raw(']');
|
/template/twigstarter/vendor/twig/twig/src/Node/ |
H A D | ModuleNode.php | 127 ->raw(', ') 129 ->raw(', ') 131 ->raw(')') 136 ->raw(";\n") 368 ->raw(";\n") 444 ->raw(', ') 446 ->raw(', ') 448 ->raw(");\n") 460 ->raw(', ') 462 ->raw(', ') [all …]
|
H A D | IncludeNode.php | 52 ->raw(";\n") 65 ->raw(");\n") 71 $compiler->raw('->display('); 73 $compiler->raw(");\n"); 82 ->raw(', ') 84 ->raw(', ') 86 ->raw(')') 96 ->raw('twig_array_merge($context, ') 98 ->raw(')') 101 $compiler->raw('twig_to_array('); [all …]
|
H A D | ImportNode.php | 36 ->raw('] = ') 41 ->raw('$this->macros[') 43 ->raw('] = ') 48 $compiler->raw('$this'); 51 ->raw('$this->loadTemplate(') 53 ->raw(', ') 55 ->raw(', ') 57 ->raw(')->unwrap()') 61 $compiler->raw(";\n");
|
H A D | MacroNode.php | 48 ->raw('$__'.$name.'__ = ') 53 $compiler->raw(', '); 58 $compiler->raw(', '); 62 ->raw('...$__varargs__') 63 ->raw(")\n") 75 ->raw(' => $__'.$name.'__') 76 ->raw(",\n") 83 ->raw(' => ') 87 ->raw("\$__varargs__,\n") 101 ->raw("\n")
|
H A D | SetNode.php | 52 $compiler->raw(', '); 57 $compiler->raw(')'); 73 …$compiler->raw(" = ('' === \$tmp = ob_get_clean()) ? '' : new Markup(\$tmp, \$this->env->getCharse… 78 $compiler->raw(' = '); 84 $compiler->raw(', '); 89 $compiler->raw(']'); 93 ->raw("('' === \$tmp = ") 95 ->raw(") ? '' : new Markup(\$tmp, \$this->env->getCharset())") 103 $compiler->raw(";\n");
|
H A D | EmbedNode.php | 39 ->raw(', ') 41 ->raw(', ') 43 ->raw(', ') 45 ->raw(')')
|
/template/twigstarter/vendor/twig/twig/src/ |
H A D | Compiler.php | 81 public function subcompile(Node $node, $raw = true) argument 83 if (false === $raw) { 99 public function raw($string) function in Twig\\Compiler 148 $this->raw(var_export($value, true)); 154 $this->raw('null'); 156 $this->raw($value ? 'true' : 'false'); 158 $this->raw('array('); 162 $this->raw(', '); 166 $this->raw(' => '); 169 $this->raw(')');
|
/template/twigstarter/vendor/twig/twig/src/Node/Expression/Test/ |
H A D | ConstantTest.php | 31 ->raw('(') 33 ->raw(' === constant(') 38 ->raw('get_class(') 40 ->raw(')."::".') 46 ->raw('))')
|
/template/twigstarter/vendor/twig/twig/src/Node/Expression/Binary/ |
H A D | MatchesBinary.php | 21 ->raw('preg_match(') 23 ->raw(', ') 25 ->raw(')') 31 return $compiler->raw('');
|
H A D | RangeBinary.php | 21 ->raw('range(') 23 ->raw(', ') 25 ->raw(')') 31 return $compiler->raw('..');
|
H A D | InBinary.php | 21 ->raw('twig_in_filter(') 23 ->raw(', ') 25 ->raw(')') 31 return $compiler->raw('in');
|
H A D | NotInBinary.php | 21 ->raw('!twig_in_filter(') 23 ->raw(', ') 25 ->raw(')') 31 return $compiler->raw('not in');
|
H A D | EndsWithBinary.php | 23 ->raw(sprintf('(is_string($%s = ', $left)) 25 ->raw(sprintf(') && is_string($%s = ', $right)) 27 … ->raw(sprintf(') && (\'\' === $%2$s || $%2$s === substr($%1$s, -strlen($%2$s))))', $left, $right)) 33 return $compiler->raw('');
|
H A D | StartsWithBinary.php | 23 ->raw(sprintf('(is_string($%s = ', $left)) 25 ->raw(sprintf(') && is_string($%s = ', $right)) 27 ->raw(sprintf(') && (\'\' === $%2$s || 0 === strpos($%1$s, $%2$s)))', $left, $right)) 33 return $compiler->raw('');
|
H A D | AbstractBinary.php | 29 ->raw('(') 31 ->raw(' ') 35 ->raw(' ') 37 ->raw(')')
|
/template/kajukkk/ |
H A D | logs.txt | 2241 https://namu.wiki/raw/day%20r%20survival 2244 https://namu.wiki/raw/Day%20R%20Survival 2276 https://namu.wiki/raw/moonlight 2388 https://namu.wiki/raw/Tether 2396 https://namu.wiki/raw/%EB%B0%8D%ED%82%A4%EB%84%B7 2439 https://namu.wiki/raw/emby 2442 https://namu.wiki/raw/emby 2445 https://namu.wiki/raw/nprotect 2448 https://namu.wiki/raw/nProtect 2452 https://namu.wiki/raw/%EC%BB%AC%EB%9F%AC%EB%A7%81 [all …]
|
/template/bs4simple/ |
H A D | README.md | 3 ![image0](/images/sc0.png?raw=true) 4 ![image1](/images/sc1.png?raw=true) 5 ![image2](/images/sc2.png?raw=true)
|