Home
last modified time | relevance | path

Searched refs:array (Results 1 – 25 of 53) sorted by relevance

123

/template/strap/ComboStrap/
H A DArrayUtility.php46 * @param array $array
49 public static function filterArrayByKey(array &$array, $pattern) argument
51 foreach ($array as $key => &$value) {
53 unset($array[$key]);
61 public static function addIfNotSet(array &$array, $key, $value) argument
63 if (!isset($array[$key])) {
64 $array[$key] = $value;
74 public static function array_key_last(&$array) argument
77 end($array);
78 $key = key($array);
[all …]
H A DSnippet.php579 public static function createFromJson($array): Snippet argument
582 $uri = $array[self::JSON_URI_PROPERTY] ?? null;
590 $componentName = $array[self::JSON_COMPONENT_PROPERTY] ?? null;
595 $critical = $array[self::JSON_CRITICAL_PROPERTY] ?? null;
600 $async = $array[self::JSON_ASYNC_PROPERTY] ?? null;
605 $format = $array[self::JSON_FORMAT_PROPERTY] ?? null;
610 $content = $array[self::JSON_CONTENT_PROPERTY] ?? null;
615 $attributes = $array[self::JSON_HTML_ATTRIBUTES_PROPERTY] ?? null;
622 $integrity = $array[self::JSON_INTEGRITY_PROPERTY] ?? null;
627 $remoteUrl = $array[self::JSON_URL_PROPERTY] ?? null;
[all …]
H A DSnippetSystem.php127 * @param array $array
133 function getSlotSnippetsFromJsonArray(array $array, string $slot): ?array argument
136 foreach ($array as $element) {
H A DTagAttributes.php864 $array = array();
874 $array[$key] = $value;
881 $array[$key] = $value;
884 $array["style"] = $this->getStyle();
890 $array[self::DOKUWIKI_TEXT_NODE_ATTRIBUTE] = $this->innerText;
892 return $array;
/template/strap/syntax/
H A Dxmlinlinetag.php44 $array = ButtonTag::getTags();
45 $array[] = DropDownTag::TAG;
46 $array[] = NoteTag::TAG_INOTE;
47 $array[] = PermalinkTag::TAG;
48 $array[] = DateTag::TAG;
49 $array[] = IconTag::TAG;
50 $array[] = PipelineTag::TAG;
51 $array[] = FollowTag::MARKUP;
52 $array[] = ShareTag::MARKUP;
53 return $array;
H A Dwebcode.php179 $array = WebCodeTag::handleExit($handler);
180 $array[PluginUtility::STATE] = $state;
181 return $array;
/template/twigstarter/vendor/twig/twig/src/Resources/
Dcore.php215 function twig_get_array_keys_filter($array) argument
219 return CoreExtension::keys($array);
239 function twig_sort_filter(Environment $env, $array, $arrow = null) argument
243 return CoreExtension::sort($env, twig_resolve_is_sandboxed($env), $array, $arrow);
467 function twig_array_column(Environment $env, $array, $name, $index = null): array argument
471 return CoreExtension::column($env, twig_resolve_is_sandboxed($env), $array, $name, $index);
479 function twig_array_filter(Environment $env, $array, $arrow) argument
483 return CoreExtension::filter($env, twig_resolve_is_sandboxed($env), $array, $arrow);
491 function twig_array_map(Environment $env, $array, $arrow) argument
495 return CoreExtension::map($env, twig_resolve_is_sandboxed($env), $array, $arrow);
[all …]
/template/strap/ComboStrap/Meta/Form/
H A DFormMetaTab.php64 $array["name"]= $this->name;
66 $array["label"] = $this->label;
69 $array["width-field"] = $this->widthField;
72 $array["width-label"] = $this->widthLabel;
74 return $array;
/template/twigstarter/vendor/twig/twig/src/Extension/
DCoreExtension.php734 foreach ($arrays as $argNumber => $array) {
735 if (!is_iterable($array)) {
736 …ects a sequence or a mapping, got "%s" for argument %d.', get_debug_type($array), $argNumber + 1));
739 $result = array_merge($result, self::toArray($array));
926 public static function keys($array): array argument
928 if ($array instanceof \Traversable) {
929 while ($array instanceof \IteratorAggregate) {
930 $array = $array->getIterator();
934 if ($array instanceof \Iterator) {
935 $array->rewind();
[all …]
DSandboxExtension.php195 $array = iterator_to_array($obj);
196 $this->ensureToStringAllowedForArray($array, $lineno, $source, $seen);
199 return $array;
/template/strap/vendor/php-webdriver/webdriver/lib/Firefox/
H A DFirefoxOptions.php95 $array = $this->options;
97 $array[self::OPTION_ARGS] = $this->arguments;
100 $array[self::OPTION_PREFS] = $this->preferences;
103 return $array;
/template/mnml-blog/user/
Dboxes.php.dist91 …." <li><a href=\"".wl(cleanID(getId()), array("do" => "backlink"))."\" rel=\"nofollow\">".hsc($…
107 …." <li><a href=\"".wl(cleanID(getId()), array("do" => "backlink"))."\">".hsc($lang["mnmlblog_ln…
108 …." <li><a href=\"".wl(cleanID(getId()), array("do" => "index"))."\">".hsc($lang["mnmlblog_lnk_s…
121 …$_mnmlblog_boxes["userlnk"]["xhtml"] .= " <li><a href=\"".wl(cleanID(getId()), array("do" => "d…
124 …og_boxes["userlnk"]["xhtml"] .= " <li><a href=\"".wl(cleanID(getId()), array("do" => "edit", "r…
126 …og_boxes["userlnk"]["xhtml"] .= " <li><a href=\"".wl(cleanID(getId()), array("do" => "edit", "r…
130 …$_mnmlblog_boxes["userlnk"]["xhtml"] .= " <li><a href=\"".wl(cleanID(getId()), array("do" => "e…
133 …$_mnmlblog_boxes["userlnk"]["xhtml"] .= " <li><a href=\"".wl("", array("do" => "media"))."\" r…
134 …." <li><a href=\"".wl(cleanID(getId()), array("do" => "revisions"))."\" rel=\"nofollow\">".hsc(…
135 …." <li><a href=\"".wl(cleanID(getId()), array("rev" =>(int)$rev))."\" rel=\"nofollow\">".hsc($l…
[all …]
/template/strap/ComboStrap/TagAttribute/
H A DStyleAttribute.php44 * @param array $array of property as key and value
47 public static function createInlineValue(array $array) argument
50 foreach ($array as $property => $value) {
/template/bootstrap3/tpl/
Dfunctions.php26 $array = (array) $object;
29 foreach ($array as $key => $value) {
/template/vector20/user/
Dtabs.php.dist88 …$_vector_tabs_right["ca-watchns"]["href"] = wl(cleanID(getId()), array("do" => "subscribens"), fal…
91 …$_vector_tabs_right["ca-watchns"]["href"] = wl(cleanID(getId()), array("do" => "unsubscribens"), f…
102 $_vector_tabs_right["ca-recent"]["href"] = wl("", array("do" => "recent"), false, "&");
138 …$_vector_tabs_left["ca-export-odt"]["href"] = wl(cleanID(getId()), array("do" => "export_odt")…
153 …$_vector_tabs_left["ca-export-pdf"]["href"] = wl(cleanID(getId()), array("do" => "export_pdf")…
Dboxes.php.dist50 …." <li><a href=\"".wl(cleanID(getId()), array("do" => "backlink"))."\" rel=\"nofollow\">".hsc($la…
52 …." <li><a href=\"".wl(cleanID(getId()), array("rev" => 0, "vecdo" => "cite"))."\" rel=\"nofollow\…
/template/vector/user/
Dtabs.php.dist88 …$_vector_tabs_right["ca-watchns"]["href"] = wl(cleanID(getId()), array("do" => "subscribens"), fal…
91 …$_vector_tabs_right["ca-watchns"]["href"] = wl(cleanID(getId()), array("do" => "unsubscribens"), f…
102 $_vector_tabs_right["ca-recent"]["href"] = wl("", array("do" => "recent"), false, "&");
138 …$_vector_tabs_left["ca-export-odt"]["href"] = wl(cleanID(getId()), array("do" => "export_odt")…
153 …$_vector_tabs_left["ca-export-pdf"]["href"] = wl(cleanID(getId()), array("do" => "export_pdf")…
Dboxes.php.dist50 …." <li><a href=\"".wl(cleanID(getId()), array("do" => "backlink"))."\" rel=\"nofollow\">".hsc($la…
52 …." <li><a href=\"".wl(cleanID(getId()), array("rev" => 0, "vecdo" => "cite"))."\" rel=\"nofollow\…
/template/wikiweko/user/
H A Dtabs.php.dist88 …$_vector_tabs_right["ca-watchns"]["href"] = wl(cleanID(getId()), array("do" => "subscribens"), fal…
91 …$_vector_tabs_right["ca-watchns"]["href"] = wl(cleanID(getId()), array("do" => "unsubscribens"), f…
102 $_vector_tabs_right["ca-recent"]["href"] = wl("", array("do" => "recent"), false, "&");
138 …$_vector_tabs_left["ca-export-odt"]["href"] = wl(cleanID(getId()), array("do" => "export_odt")…
153 …$_vector_tabs_left["ca-export-pdf"]["href"] = wl(cleanID(getId()), array("do" => "export_pdf")…
/template/strap/ComboStrap/Meta/Field/
H A DAliases.php126 $array = [];
128 $array[$alias->getPath()->toAbsoluteId()] = [
133 return array_values($array);
/template/monobook/user/
Dtabs.php.dist56 $_monobook_tabs["tab-recent"]["href"] = wl("", array("do" => "recent"), false, "&");
68 …$_monobook_tabs["ca-watchns"]["href"] = wl(cleanID(getId()), array("do" => "subscribens"), false, …
71 …$_monobook_tabs["ca-watchns"]["href"] = wl(cleanID(getId()), array("do" => "unsubscribens"), false…
Dboxes.php.dist50 …." <li><a href=\"".wl(cleanID(getId()), array("do" => "backlink"))."\" rel=\"nofollow\">".hsc($la…
52 …." <li><a href=\"".wl(cleanID(getId()), array("rev" => 0, "mddo" => "cite"))."\" rel=\"nofollow\"…
/template/strap/vendor/symfony/process/
H A DCHANGELOG.md21 …* `Process` must be instantiated with a command array, use `Process::fromShellCommandline()` when …
50 * added a second `array $env = []` argument to the `start()`, `run()`,
52 * added a second `array $env = []` argument to the `start()` method of the
/template/starterbootstrap/js/
Dsorttable.js451 Array.forEach = function(array, block, context) { argument
452 for (var i = 0; i < array.length; i++) {
453 block.call(context, array[i], i, array);
/template/strap/vendor/salesforce/handlebars-php/
H A DREADME.md59 At the minimum, we are required to have an array model and a template string. Alternatively we can …
82 … php file (index.php) we'll create the data to passed to the model. The model is a key/value array.
155 ***$model*** : Is the array that we will pass into the template
222 Handlebars nested expressions in an array.
382 * {{#each Array[start:]}} = Starts at start though the rest of the array
384 * {{#each Array[:]}} = A copy of the whole array
403 {{#each array}}
746 $engine = new \Handlebars\Handlebars(array(

123