Home
last modified time | relevance | path

Searched refs:objects (Results 226 – 248 of 248) sorted by path

12345678910

/plugin/webdav/vendor/sabre/dav/lib/CalDAV/
H A DICSExportPlugin.php303 $objects = [];
315 $objects[] = clone $child;
337 foreach ($objects as $obj) $calendar->add($obj);
H A DPlugin.php720 $objects = array_map(function($url) use ($calendar) {
726 $generator->setObjects($objects);
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DInbox.php189 $objects = $this->caldavBackend->getSchedulingObjects($this->principalUri);
190 foreach ($objects as $object) {
H A DPlugin.php941 $objects = [];
993 $objects = array_merge($objects, $calObjects);
1006 $generator->setObjects($objects);
/plugin/webdav/vendor/sabre/http/
H A DCHANGELOG.md192 serializes the objects into a standard HTTP message. This is mainly for
H A DREADME.md26 The objects are extendable and easily mockable.
124 It may be useful to extend the `Request` and `Response` objects in your
133 1. You may want to extend the objects with new behaviors differently, in
182 you to write simple clients, using the `Request` and `Response` objects you're
/plugin/webdav/vendor/sabre/vobject/
H A DCHANGELOG.md108 vcards or iCalendar objects semantically.
184 * #254: The parser threw an `E_NOTICE` for certain invalid objects. It now
215 such as large iCalendar objects.
218 objects.
408 objects.
422 * #114: VTIMEZONE is retained when generating new REQUEST objects.
441 a user made on objects.
467 * Fixed: vobject repair. It was not working for iCalendar objects.
508 * Fixed: Issue #83. Creating new VALUE=DATE objects using php's DateTime.
815 iCalendar objects.
[all …]
H A DREADME.md5 and [vCard](https://tools.ietf.org/html/rfc6350) objects using PHP.
/plugin/webdav/vendor/sabre/vobject/lib/
H A DBirthdayCalendarGenerator.php21 protected $objects = []; variable in Sabre\\VObject\\BirthdayCalendarGenerator
42 * @param mixed $objects
46 if ($objects) {
47 $this->setObjects($objects);
57 * @param mixed $objects
59 public function setObjects($objects) argument
61 if (!is_array($objects)) {
62 $objects = [$objects];
65 $this->objects = [];
66 foreach ($objects as $object) {
[all …]
H A DFreeBusyGenerator.php33 protected $objects = []; variable in Sabre\\VObject\\FreeBusyGenerator
89 * @param mixed $objects
96 if ($objects) {
97 $this->setObjects($objects);
137 * @param mixed $objects
139 public function setObjects($objects) argument
141 if (!is_array($objects)) {
142 $objects = [$objects];
145 $this->objects = [];
146 foreach ($objects as $object) {
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/Splitter/
H A DICalendar.php36 protected $objects = []; variable in Sabre\\VObject\\Splitter\\ICalendar
72 if (!array_key_exists($uid, $this->objects)) {
73 $this->objects[$uid] = new VCalendar();
76 $this->objects[$uid]->add(clone $component);
90 if ($object = array_shift($this->objects)) {
/plugin/webdav/vendor/sabre/xml/
H A DCHANGELOG.md42 related to serializing value objects with array children.
43 * When serializing value objects, properties that have a null value or an
46 * Serializing array properties in value objects was broken.
194 * Added: Throwing exception when invalid objects are written.
/plugin/webdavclient/
H A Dhelper.php956 $objects = $this->getRemoteObjectsByEtag($conn, $worklist['fetch']);
957 if($objects === false)
963 dbglog($objects);
964 $this->insertObjects($conn, $objects);
984 * @param array $objects A list of objects to insert
988 private function insertObjects($conn, $objects) argument
990 foreach($objects as $href => $data)
1259 * @param mixed $objects SimpleXML Objects to recurse
1263 private function recursiveXmlToArray($objects) argument
1266 foreach($objects as $object)
/plugin/webdavclient/vendor/sabre/vobject/
H A DChangeLog.md80 * #217: Initializing vCard `DATE` objects with a PHP DateTime object will now
118 * #168: Expanding calendars now removes objects with recurrence rules that
181 * #133: Splitter objects will throw exceptions when receiving incompatible
182 objects.
191 * Changed: It's now possible to pass DateTime objects when using the magic
196 * #114: VTIMEZONE is retained when generating new REQUEST objects.
215 a user made on objects.
241 * Fixed: vobject repair. It was not working for iCalendar objects.
282 * Fixed: Issue #83. Creating new VALUE=DATE objects using php's DateTime.
589 iCalendar objects.
[all …]
H A DREADME.md5 and [vCard](https://tools.ietf.org/html/rfc6350) objects using PHP.
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DFreeBusyGenerator.php31 protected $objects; variable in Sabre\\VObject\\FreeBusyGenerator
77 * @param mixed $objects
87 if ($objects) {
88 $this->setObjects($objects);
121 * @param mixed $objects
124 public function setObjects($objects) { argument
126 if (!is_array($objects)) {
127 $objects = array($objects);
130 $this->objects = array();
131 foreach($objects as $object) {
[all …]
/plugin/webdavclient/vendor/sabre/vobject/lib/Splitter/
H A DICalendar.php37 protected $objects = array(); variable in Sabre\\VObject\\Splitter\\ICalendar
75 if (!array_key_exists($uid, $this->objects)) {
76 $this->objects[$uid] = new VCalendar();
79 $this->objects[$uid]->add(clone $component);
94 if($object=array_shift($this->objects)) {
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Splitter/
H A DICalendarTest.php37 $objects = new ICalendar($tempFile);
40 while($object=$objects->getNext()) {
61 $objects = new ICalendar($tempFile);
76 $objects = new ICalendar($tempFile);
79 while($object=$objects->getNext()) {
92 $objects = new ICalendar($tempFile);
123 $objects = new ICalendar($tempFile);
127 while($object=$objects->getNext()) {
163 $objects = new ICalendar($tempFile);
166 while($object=$objects->getNext()) {
[all …]
H A DVCardTest.php26 $objects = new VCard($tempFile);
29 while($objects->getNext()) {
111 $objects = new VCard($tempFile);
112 $object=$objects->getNext();
129 $objects = new VCard($tempFile);
130 while($objects->getNext()) { }
145 $objects = new VCard($tempFile);
148 while($objects->getNext()) {
169 $objects = new VCard($tempFile);
172 while ($objects->getNext()) {
[all …]
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js18248 attributes.objects = booleanToXml(model.objects === false, '1');
18266 objects: node.attributes.objects === '1' ? false : undefined,
81874 var objects = [];
81877 objects.push(inspect(arguments[i]));
81880 return objects.join(' ');
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs15374 var sheetprot_deffalse = ["objects", "scenarios", "selectLockedCells", "selectUnlockedCells"];
16379 ["objects", false], // fObjects
18974 if(ws['!protect'].objects) o.push(writetag("ProtectObjects", "True"));
19324 var objects = []; variable
19463 if(objects.length > 0) out["!objects"] = objects;
19505 objects = [];
19646 case 0x005d /* Obj */: objects[val.cmo[0]] = opts.lastobj = val; break;
19667 var noteobj = objects[val[2]];
/plugin/yuriigantt/3rd/dhtmlxgantt/
H A Ddhtmlxgantt.js.map1 …{\n runTimeout(drainQueue);\n }\n};\n\n// v8 likes predictible objects\nfunction Item(fu…
/plugin/yuriigantt/3rd/dhtmlxgantt/ext/
H A Ddhtmlxgantt_keyboard_navigation.js.map1 …mpareTo: function (b) {\n\t\t\t\t// good enough comparison of two random objects\n\t\t\t\tif (!b) …

12345678910