Home
last modified time | relevance | path

Searched refs:items (Results 1 – 25 of 1353) sorted by relevance

12345678910>>...55

/plugin/authfacebook/lib/GraphNodes/
H A DCollection.php46 protected $items = []; variable in Facebook\\GraphNodes\\Collection
51 * @param array $items
55 $this->items = $items;
69 return $this->items[$name];
121 return $this->items;
133 }, $this->items);
145 return new static(array_map($callback, $this->items, array_keys($this->items)));
167 return count($this->items);
201 return $this->items[$key];
215 $this->items[] = $value;
[all …]
H A DGraphNode.php60 $items = [];
67 $items[$k] = $this->castToDateTime($v);
69 $items[$k] = $this->castToBirthday($v);
71 $items[$k] = $v;
75 return $items;
86 $items = $this->asArray();
94 }, $items);
/plugin/odt/ODT/styles/
H A DODTStyleStyle.php111 switch ($items ['section']) {
113 $style .= $items ['odt_property'].'="'.$items ['value'].'" ';
116 $text .= $items ['odt_property'].'="'.$items ['value'].'" ';
119 $paragraph .= $items ['odt_property'].'="'.$items ['value'].'" ';
122 $table .= $items ['odt_property'].'="'.$items ['value'].'" ';
125 $table_column .= $items ['odt_property'].'="'.$items ['value'].'" ';
128 $table_row .= $items ['odt_property'].'="'.$items ['value'].'" ';
131 $table_cell .= $items ['odt_property'].'="'.$items ['value'].'" ';
134 $tab_stop .= $items ['odt_property'].'="'.$items ['value'].'" ';
137 $image .= $items ['odt_property'].'="'.$items ['value'].'" ';
[all …]
H A DODTMasterPageStyle.php158 foreach ($this->master_style as $property => $items) {
159 $master .= $items ['odt_property'].'="'.$items ['value'].'" ';
163 foreach ($this->style_header as $property => $items) {
164 $header .= $items ['odt_property'].'="'.$items ['value'].'" ';
168 foreach ($this->style_footer as $property => $items) {
169 $footer .= $items ['odt_property'].'="'.$items ['value'].'" ';
173 foreach ($this->style_header_left as $property => $items) {
174 $header_left .= $items ['odt_property'].'="'.$items ['value'].'" ';
178 foreach ($this->style_footer_left as $property => $items) {
179 $footer_left .= $items ['odt_property'].'="'.$items ['value'].'" ';
H A DODTTextOutlineStyle.php165 foreach ($this->properties as $property => $items) {
166 $style .= $items ['odt_property'].'="'.$items ['value'].'" ';
175 foreach ($properties as $property => $items) {
176 switch ($items ['section']) {
178 $level .= $items ['odt_property'].'="'.$items ['value'].'" ';
181 $level_list .= $items ['odt_property'].'="'.$items ['value'].'" ';
184 $level_label .= $items ['odt_property'].'="'.$items ['value'].'" ';
187 $text .= $items ['odt_property'].'="'.$items ['value'].'" ';
H A DODTPageLayoutStyle.php276 foreach ($this->page_layout_style as $property => $items) {
277 $layout_style .= $items ['odt_property'].'="'.$items ['value'].'" ';
281 foreach ($this->layout_props as $property => $items) {
282 $layout .= $items ['odt_property'].'="'.$items ['value'].'" ';
286 foreach ($this->bgi_props as $property => $items) {
287 $bgi .= $items ['odt_property'].'="'.$items ['value'].'" ';
291 foreach ($this->columns_props as $property => $items) {
292 $columns .= $items ['odt_property'].'="'.$items ['value'].'" ';
296 foreach ($this->footnote_props as $property => $items) {
297 $footnote .= $items ['odt_property'].'="'.$items ['value'].'" ';
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/
H A Dmethod_call.test4 {{ items.foo.foo }}
5 {{ items.foo.getFoo() }}
6 {{ items.foo.bar }}
7 {{ items.foo['bar'] }}
8 {{ items.foo.bar('a', 43) }}
9 {{ items.foo.bar(foo) }}
10 {{ items.foo.self.foo() }}
11 {{ items.foo.is }}
12 {{ items.foo.in }}
13 {{ items.foo.not }}
[all …]
H A Darray_call.test4 {{ items.foo }}
5 {{ items['foo'] }}
6 {{ items[foo] }}
7 {{ items[items[foo]] }}
9 return ['foo' => 'bar', 'items' => ['foo' => 'bar', 'bar' => 'foo']]
/plugin/sitemapnavi/
H A Dhelper.php32 $items = $this->sortMediaAfterPages($items);
59 $numberOfItems = count($items);
61 if (empty($items)) {
62 return $items;
68 $item1 = $items[$count];
87 return $items;
150 $items = [];
154 $items[] = $page;
157 $items[] = $page;
169 $items = array_merge($items, $unhandledMediaFiles);
[all …]
/plugin/findologicxmlexport/vendor/findologic/libflexport/src/FINDOLOGIC/Export/XML/
H A DPage.php18 private $items; variable in FINDOLOGIC\\Export\\XML\\Page
28 $this->items = [];
33 array_push($this->items, $item);
36 public function setAllItems(array $items) argument
38 $this->items = $items;
46 if (count($this->items) > $this->count) {
54 $items = XMLHelper::createElement($document, 'items', [
59 $root->appendChild($items);
62 foreach ($this->items as $item) {
64 $items->appendChild($itemDom);
/plugin/farm/
H A Dscript.js8 for(var i=0; i<items.length; i++) {
9 if(!items[i].getAttribute('ref') || !items[i].className.match(/animal_(dir|file)/)) continue;
11 items[i].container = d;
13 items[i].open = function() {
54 if(d.getAttribute('openned') == items[i].getAttribute('ref')) o = items[i];
58 items[i].openned = true;
68 items[i].onclick = items[i].toggle;
70 items[i].open = function() {
81 items[i].close = function() {
96 if(!items[i].getAttribute('ref') || !items[i].className.match(/animal_dir/)) continue;
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/filter/
H A Dwith_if_tag.test5 {% if items %}
6 {{ items|join(', ') }}
9 {% if items.3 is defined %}
12 {{ items.1 }}
15 {% if items.3 is defined %}
17 {% elseif items.1 %}
18 {{ items.0 }}
23 return ['items' => ['a', 'b']]
/plugin/authgooglesheets/vendor/google/auth/src/Cache/
H A DSysVCacheItemPool.php47 private $items; variable in Google\\Auth\\Cache\\SysVCacheItemPool
89 $this->items = [];
111 $items = [];
115 clone $this->items[$key] :
118 return $items;
127 return isset($this->items[$key]) && $this->items[$key]->isHit();
135 $this->items = [];
158 unset($this->items[$key]);
215 $this->items
238 $this->items = $data;
[all …]
H A DMemoryCacheItemPool.php31 private $items; variable in Google\\Auth\\Cache\\MemoryCacheItemPool
59 $items = [];
62 $items[$key] = $this->hasItem($key) ? clone $this->items[$key] : new $itemClass($key);
65 return $items;
78 return isset($this->items[$key]) && $this->items[$key]->isHit();
89 $this->items = [];
117 unset($this->items[$key]);
131 $this->items[$item->getKey()] = $item;
/plugin/displayorphans/
H A Dhelper.php24 function /* array */ items(/* string */ $datadir, /* string */ $type) function in helper_plugin_displayorphans
31 $items = $this->findItems($datadir, $itemFilterPredicate, $ignoredPages, $ignoreNamespaces);
32 …if (!empty($items)) { if ($this->getConf('sort_table_ascending')) { ksort($items); } else { krsort…
33 return $items;
39 $items = array();
41 …{ if (empty($filter) || $filter($id, $item, $ignoredPages, $ignoreNamespaces)) { $items[$id] = $it…
42 return $items;
47 $items = array();
48 search($items, $datadir, array($this, '_filterItem'), null);
49 return $items;
/plugin/ckgdoku/ckeditor/
H A Dconfig.js1items:["same_header","lower_header","higher_header","none_header"]},{name:"basicstyles",items:["Bo…
/plugin/ckgedit/ckeditor/
H A Dconfig.js1items:["same_header","lower_header","higher_header","none_header"]},{name:"basicstyles",items:["Bo…
/plugin/authgoogle/google/contrib/
H A DGoogle_AdExchangeSellerService.php432 public $items; variable in Google_AdClients
443 $this->items = $items;
446 return $this->items;
504 public $items; variable in Google_AdUnits
515 $this->items = $items;
609 public $items; variable in Google_CustomChannels
620 $this->items = $items;
750 public $items; variable in Google_SavedReports
761 $this->items = $items;
808 public $items; variable in Google_UrlChannels
[all …]
H A DGoogle_OrkutService.php924 $this->items = $items;
1050 $this->items = $items;
1086 $this->items = $items;
1113 $this->items = $items;
1205 $this->items = $items;
1317 $this->items = $items;
1461 $this->items = $items;
1519 $this->items = $items;
1711 $this->items = $items;
1967 $this->items = $items;
[all …]
H A DGoogle_AdSenseService.php1114 public $items; variable in Google_Accounts
1125 $this->items = $items;
1186 public $items; variable in Google_AdClients
1197 $this->items = $items;
1531 $this->items = $items;
1678 $this->items = $items;
1777 $this->items = $items;
1803 $this->items = $items;
1921 $this->items = $items;
1979 $this->items = $items;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AIPlatformNotebooks/
H A DUpdateInstanceMetadataItemsRequest.php25 public $items; variable in Google\\Service\\AIPlatformNotebooks\\UpdateInstanceMetadataItemsRequest
30 public function setItems($items) argument
32 $this->items = $items;
39 return $this->items;
H A DUpdateInstanceMetadataItemsResponse.php25 public $items; variable in Google\\Service\\AIPlatformNotebooks\\UpdateInstanceMetadataItemsResponse
30 public function setItems($items) argument
32 $this->items = $items;
39 return $this->items;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/
H A DTags.php30 public $items; variable in Google\\Service\\Compute\\Tags
49 public function setItems($items) argument
51 $this->items = $items;
58 return $this->items;
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dmerge.rst20 {% set items = { 'apple': 'fruit', 'orange': 'fruit', 'peugeot': 'unknown' } %}
22 {% set items = items|merge({ 'peugeot': 'car', 'renault': 'car' }) %}
24 …{# items now contains { 'apple': 'fruit', 'orange': 'fruit', 'peugeot': 'car', 'renault': 'car' } …
37 {% set items = { 'apple': 'fruit', 'orange': 'fruit' } %}
39 {% set items = { 'apple': 'unknown' }|merge(items) %}
41 {# items now contains { 'apple': 'fruit', 'orange': 'fruit' } #}
/plugin/findologicxmlexport/vendor/twig/twig/src/Error/
H A DSyntaxError.php26 * @param array $items An array of possible items
28 public function addSuggestions($name, array $items) argument
30 if (!$alternatives = self::computeAlternatives($name, $items)) {
42 public static function computeAlternatives($name, $items) argument
45 foreach ($items as $item) {

12345678910>>...55