Home
last modified time | relevance | path

Searched refs:root (Results 751 – 775 of 880) sorted by path

1...<<313233343536

/plugin/webdav/vendor/sabre/vobject/lib/
H A DComponent.php46 * @param Document $root
51 public function __construct(Document $root, $name, array $children = [], $defaults = true) argument
54 $this->root = $root;
116 $newNode = call_user_func_array([$this->root, 'create'], $arguments);
516 $clonedChild->root = $this->root;
H A DNode.php61 protected $root; variable in Sabre\\VObject\\Node
95 $this->root = null;
H A DParameter.php53 public function __construct(Document $root, $name, $value = null) argument
56 $this->root = $root;
279 if (Document::VCARD21 === $this->root->getDocumentType() && $this->noName) {
H A DProperty.php64 * @param Component $root The root document
70 …public function __construct(Component $root, $name, $value = null, array $parameters = [], $group … argument
75 $this->root = $root;
174 $param = new Parameter($this->root, $name, $value);
453 $param = new Parameter($this->root, $name, $value);
555 if (Document::VCARD40 === $this->root->getDocumentType()) {
566 switch ($this->root->getDocumentType()) {
/plugin/webdav/vendor/sabre/vobject/lib/Component/
H A DVTimeZone.php29 return VObject\TimeZoneUtil::getTimeZone((string) $this->TZID, $this->root);
/plugin/webdav/vendor/sabre/vobject/lib/Parser/
H A DJson.php34 protected $root; variable in Sabre\\VObject\\Parser\\Json
64 $this->root = new VCalendar([], false);
67 $this->root = new VCard([], false);
73 $this->root->add($this->parseProperty($prop));
77 $this->root->add($this->parseComponent($comp));
84 return $this->root;
117 return $this->root->createComponent(
143 $defaultPropertyClass = $this->root->getClassNameForPropertyName($propertyName);
156 $prop = $this->root->createProperty($propertyName, null, $parameters, $valueType);
H A DMimeDir.php40 protected $root; variable in Sabre\\VObject\\Parser\\MimeDir
80 $this->root = null;
92 return $this->root;
166 $this->root = new $class([], false);
176 $this->root->add($result);
181 if ($name !== $this->root->name) {
182 …throw new ParseException('Invalid MimeDir file. expected: "END:'.$this->root->name.'" got: "END:'.…
198 if (substr($line, 6) === $this->root->name) {
201 $component = $this->root->createComponent(substr($line, 6), [], false);
436 $propObj = $this->root->createProperty($property['name'], null, $namedParameters);
[all …]
H A DXML.php45 protected $root; variable in Sabre\\VObject\\Parser\\XML
90 $this->root = new VCalendar([], false);
92 $this->parseVCalendarComponents($this->root);
97 $this->root = new VCard(['version' => '4.0'], false);
99 $this->parseVCardComponents($this->root);
110 return $this->root;
225 $propertyNameExtended = ($this->root instanceof VCalendar
314 $currentComponent = $this->root->createComponent(
338 $property = $this->root->createProperty(
/plugin/webdav/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php164 $timeZone = TimeZoneUtil::getTimeZone((string) $tzid, $this->root);
H A DRecur.php160 $date = new DateTime($this->root, null, $v);
/plugin/webdav/vendor/sabre/vobject/lib/Property/
H A DText.php67 * @param Component $root The root document
73 …public function __construct(Component $root, $name, $value = null, array $parameters = [], $group … argument
84 parent::__construct($root, $name, $value, $parameters, $group);
196 if (Document::VCARD21 !== $this->root->getDocumentType()) {
H A DUri.php57 $parameters['VALUE'] = new Parameter($this->root, 'VALUE', 'URI');
/plugin/webdav/vendor/sabre/xml/
H A DCHANGELOG.md57 * It's now possible to pass an array of possible root elements to
/plugin/webdavclient/vendor/sabre/vobject/
H A DChangeLog.md457 be created through the root component. (A VCalendar or VCard object).
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DComponent.php44 * @param Document $root
50 function __construct(Document $root, $name, array $children = array(), $defaults = true) { argument
53 $this->root = $root;
120 $item = $this->root->create($a1, $a2, $a3);
427 $property = $this->root->create($name,$value);
H A DNode.php59 protected $root; variable in Sabre\\VObject\\Node
H A DParameter.php53 public function __construct(Document $root, $name, $value = null) { argument
56 $this->root = $root;
287 if ($this->root->getDocumentType() === Document::VCARD21 && $this->noName) {
H A DProperty.php62 * @param Component $root The root document
69 …function __construct(Component $root, $name, $value = null, array $parameters = array(), $group = … argument
74 $this->root = $root;
181 $param = new Parameter($this->root, $name, $value);
399 $param = new Parameter($this->root, $name, $value);
511 if ($this->root->getDocumentType()===Document::VCARD40) {
523 switch($this->root->getDocumentType()) {
/plugin/webdavclient/vendor/sabre/vobject/lib/Component/
H A DVTimeZone.php29 return VObject\TimeZoneUtil::getTimeZone((string)$this->TZID, $this->root);
/plugin/webdavclient/vendor/sabre/vobject/lib/Parser/
H A DJson.php34 protected $root; variable in Sabre\\VObject\\Parser\\Json
63 $this->root = new VCalendar(array(), false);
66 $this->root = new VCard(array(), false);
73 $this->root->add($this->parseProperty($prop));
76 $this->root->add($this->parseComponent($comp));
82 return $this->root;
115 return $this->root->createComponent(
141 $defaultPropertyClass = $this->root->getClassNameForPropertyName($propertyName);
154 $prop = $this->root->createProperty($propertyName, null, $parameters, $valueType);
H A DMimeDir.php40 protected $root; variable in Sabre\\VObject\\Parser\\MimeDir
54 $this->root = null;
65 return $this->root;
128 $this->root = new $class(array(), false);
139 $this->root->add($result);
145 if ($name!==$this->root->name) {
146 …throw new ParseException('Invalid MimeDir file. expected: "END:' . $this->root->name . '" got: "EN…
163 $component = $this->root->createComponent(substr($line,6), array(), false);
404 $propObj = $this->root->createProperty($property['name'], null, $namedParameters);
/plugin/webdavclient/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php167 $timeZone = TimeZoneUtil::getTimeZone((string)$tzid, $this->root);
/plugin/webdavclient/vendor/sabre/vobject/lib/Property/
H A DText.php66 * @param Component $root The root document
73 …public function __construct(Component $root, $name, $value = null, array $parameters = array(), $g… argument
84 parent::__construct($root, $name, $value, $parameters, $group);
207 if ($this->root->getDocumentType() !== Document::VCARD21) {
/plugin/widearea/widearea/
H A Dwidearea.js9 (function (root, factory) {
18 factory(root);
/plugin/wysiwyg/fckeditor/editor/_source/commandclasses/
H A Dfcklistcommands.js130 var root = blockLimit ;
131 if ( root._FCK_ListGroupObject )
132 root._FCK_ListGroupObject.contents.push( block ) ;
135 var groupObj = { 'root' : root, 'contents' : [ block ] } ; property in FCKListCommand.Execute.groupObj
180 if ( groupObj.root.nodeName.IEquals( ['ul', 'ol'] ) )
244 var listArray = FCKDomTools.ListToArray( groupObj.root, markerObj ) ;
267 groupObj.root.parentNode.replaceChild( newList.listNode, groupObj.root ) ;
273 var doc = groupObj.root.ownerDocument ;
279 if ( contents.length == 1 && contents[0] == groupObj.root )
375 if ( groupObj.root.nextSibling == null || groupObj.root.nextSibling.nodeName.IEquals( 'br' ) )
[all …]

1...<<313233343536