Home
last modified time | relevance | path

Searched refs:args (Results 1 – 25 of 39) sorted by relevance

12

/template/strap/vendor/salesforce/handlebars-php/src/Handlebars/
H A DHelpers.php217 * @param array $args passed arguments to helper
223 public function helperIf($template, $context, $args, $source) argument
225 $tpl = $template->getEngine()->loadString('{{#if ' . $args . '}}' . $source . '{{/if}}');
227 $tmp = $context->get($args);
249 $args = $this->parseArgs($context, substr($name, 7));
259 if (isset($args[0]) && $args[0]) {
290 * @param array $args passed arguments to helper
296 public function helperEach($template, $context, $args, $source) argument
298 list($keyname, $slice_start, $slice_end) = $this->extractSlice($args);
385 * @param array $args passed arguments to helper
[all …]
H A DTokenizer.php173 $args = '';
175 $args = $newBuffer[1];
188 if (isset($args)) {
189 $t[self::ARGS] = $args;
193 unset($args);
H A DTemplate.php363 $args = $this->handlebars->getEscapeArgs();
364 array_unshift($args, $value);
367 array_values($args)
/template/sprintdoc/
H A Dtpl.php70 * @param string[] $args HTML attributes for the item
73 static public function pageToolItem($link, $caption, $svg, $args = array()) { argument
74 if(blank($args['title'])) {
75 $args['title'] = $caption;
78 if(!blank($args['accesskey'])) {
79 $args['title'] .= ' [' . strtoupper($args['accesskey']) . ']';
82 if(blank($args['rel'])) {
83 $args['rel'] = 'nofollow';
86 $args['href'] = $link ?: '#';
91 $attributes = buildAttributes($args, true);
/template/taratasy/
Dtpl_functions.local.php39 $args = tpl_getConf('nsWidth');
40 if (empty($args)) return;
41 $args = explode(';', $args);
42 foreach ($args as $arg) {
/template/strap/vendor/php-webdriver/webdriver/lib/Remote/Service/
H A DDriverService.php29 private $args; variable in Facebook\\WebDriver\\Remote\\Service\\DriverService
44 * @param array $args
47 public function __construct($executable, $port, $args = [], $environment = null) argument
51 $this->args = $args;
174 ->setArguments($this->args)
180 $commandLine = array_merge([$this->executable], $this->args);
/template/strap/vendor/symfony/process/
H A DPhpExecutableFinder.php55 $args = $this->findArguments();
56 $args = $includeArgs && $args ? ' '.implode(' ', $args) : '';
60 return \PHP_BINARY.$args;
/template/mikio/inc/stemmechanics/lesserphp/
H A Dlessc.inc.php515 $this->zipSetArgs($block->args, $orderedArgs, $keywordArgs);
544 if (empty($block->args)) {
548 $remainingArgs = $block->args;
551 foreach ($block->args as $arg) {
594 if (isset($skip[$block->id]) && !isset($block->args)) {
645 protected function zipSetArgs($args, $orderedValues, $keywordValues) { argument
649 foreach ($args as $a) {
676 $last = end($args);
678 $rest = array_slice($orderedValues, count($args) - 1);
707 [, $path, $args, $suffix] = $prop;
[all …]
/template/strap/vendor/symfony/deprecation-contracts/
H A Dfunction.php23 function trigger_deprecation(string $package, string $version, string $message, ...$args): void argument
25 …(($package || $version ? "Since $package $version: " : '').($args ? vsprintf($message, $args) : $m…
/template/twigstarter/vendor/twig/twig/src/
DExpressionParser.php433 $args = $this->parseArguments();
434 if (\count($args) < 1) {
438 …return new BlockReferenceExpression($args->getNode(0), \count($args) > 1 ? $args->getNode(1) : nul…
440 $args = $this->parseArguments();
441 if (\count($args) < 2) {
445 …return new GetAttrExpression($args->getNode(0), $args->getNode(1), \count($args) > 2 ? $args->getN…
459 $args = $this->parseArguments(true);
462 return new $class($name, $args, $line);
589 $args = [];
594 if (!empty($args)) {
[all …]
/template/strap/ComboStrap/
H A DTemplateEngine.php190 function ($template, $context, $args, $source) {
192 … $tagAttributes = TagAttributes::createFromTagMatch("<share $args/>", [], $knownType);
200 function ($template, $context, $args, $source) {
208 function ($template, Context $context, $args, $source) {
211 … $tagAttributes = TagAttributes::createFromTagMatch("<breadcrumb $args/>", $default, $knownType);
220 function ($template, Context $context, $args, $source) {
223 … $tagAttributes = TagAttributes::createFromTagMatch("<page-image $args/>", $default, $knownType);
/template/strap/vendor/php-webdriver/webdriver/lib/Firefox/
H A DFirefoxDriverService.php30 $args = ['-p=' . $port];
32 return new static($pathToExecutable, $port, $args);
/template/strap/vendor/php-webdriver/webdriver/lib/Chrome/
H A DChromeDriverService.php33 $args = ['--port=' . $port];
35 return new static($pathToExecutable, $port, $args);
/template/twigstarter/vendor/twig/twig/src/NodeVisitor/
DSafeAnalysisNodeVisitor.php97 $args = $node->getNode('arguments');
99 $safe = $filter->getSafe($args);
110 $args = $node->getNode('arguments');
113 $this->setSafe($node, $function->getSafe($args));
DSandboxNodeVisitor.php125 $args = $node->getNode($name);
126 foreach ($args as $name => $_) {
127 $this->wrapNode($args, $name);
DEscaperNodeVisitor.php197 …$args = new Node([new ConstantExpression((string) $type, $line), new ConstantExpression(null, $lin…
199 return new FilterExpression($node, $name, $args, $line);
/template/strap/
H A Dcli.php208 $args = $options->getArgs();
217 $startPath = $this->getStartPath($args);
234 $startPath = $this->getStartPath($args);
241 $startPath = $this->getStartPath($args);
571 private function getStartPath($args) argument
573 $sizeof = sizeof($args);
579 $startPath = $args[0];
/template/strap/vendor/php-webdriver/webdriver/lib/Remote/
H A DRemoteWebDriver.php328 'args' => $this->prepareScriptArguments($arguments),
350 'args' => $this->prepareScriptArguments($arguments),
/template/ospyramid/js/libs/
Djquery-1.6.1.js264 each: function( callback, args ) { argument
265 return jQuery.each( this, callback, args );
611 each: function( object, callback, args ) { argument
616 if ( args ) {
619 if ( callback.apply( object[ name ], args ) === false ) {
625 if ( callback.apply( object[ i++ ], args ) === false ) {
790 var args = slice.call( arguments, 2 ),
792 return fn.apply( context, args.concat( slice.call( arguments ) ) );
961 var args = arguments,
971 for ( i = 0, length = args.length; i < length; i++ ) {
[all …]
/template/strap/resources/firebug/
H A Dfirebug-lite-1.4.js198 this.bind=function(){var args=cloneArray(arguments),fn=args.shift(),object=args.shift();
199 return function(){return fn.apply(object,arrayInsert(cloneArray(args),0,arguments))
202 this.bindFixed=function(){var args=cloneArray(arguments),fn=args.shift(),object=args.shift();
203 return function(){return fn.apply(object,args)
658 this.getBoxFromStyles=function(style,element){var args=this.readBoxStyles(style);
659 args.width=element.offsetWidth-(args.paddingLeft+args.paddingRight+args.borderLeft+args.borderRight…
660 args.height=element.offsetHeight-(args.paddingTop+args.paddingBottom+args.borderTop+args.borderBott…
661 return args
828 this.getElementByClass=function(node,className){var args=cloneArray(arguments);
829 args.splice(0,1);
[all …]
H A Dfirebug-lite-1.2-compressed.js42args=d.console.formatArgs.apply(window,arguments);d.console.addLine().attribute.addClass("Log").up…
103 …var fn=_fn,scope=_scope||window,args=Array.prototype.slice.call(arguments,2);return function(){ret…
H A Dfirebug-lite-1.2.js986 var args = d.console.formatArgs.apply(window,arguments);
987 d.console.addLine().attribute.addClass("Log").update(args);
993 var args = d.console.formatArgs.apply(window,arguments);
994 d.console.addLine().attribute.addClass("Warn").update(args);
1000 var args = d.console.formatArgs.apply(window,arguments);
1001 d.console.addLine().attribute.addClass("Info").update(args);
1007 var args = d.console.formatArgs.apply(window,arguments);
1008 d.console.addLine().attribute.addClass("Debug").update(args);
1014 var args = d.console.formatArgs.apply(window,arguments);
1015 d.console.addLine().attribute.addClass("Error").update(args);
[all …]
/template/a_new_day/js/
Dprototype.js69 var __method = this, args = $A(arguments), object = args.shift();
71 return __method.apply(object, args.concat($A(arguments)));
76 var __method = this, args = $A(arguments), object = args.shift();
78 return __method.apply(object, [( event || window.event)].concat(args).concat($A(arguments)));
429 var args = $A(arguments).slice(1);
431 return value[method].apply(value, args);
495 var iterator = Prototype.K, args = $A(arguments);
496 if (typeof args.last() == 'function')
497 iterator = args.pop();
499 var collections = [this].concat(args).map($A);
[all …]
/template/battlehorse/js/
Dprototype.js69 var __method = this, args = $A(arguments), object = args.shift();
71 return __method.apply(object, args.concat($A(arguments)));
76 var __method = this, args = $A(arguments), object = args.shift();
78 return __method.apply(object, [( event || window.event)].concat(args).concat($A(arguments)));
429 var args = $A(arguments).slice(1);
431 return value[method].apply(value, args);
495 var iterator = Prototype.K, args = $A(arguments);
496 if (typeof args.last() == 'function')
497 iterator = args.pop();
499 var collections = [this].concat(args).map($A);
[all …]
/template/starterpjax/
Djquery.pjax.js178 function fire(type, args) { argument
180 context.trigger(event, args)

12