Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.

Differences Between: [Versions 311 and 401] [Versions 311 and 402] [Versions 311 and 403]

LICENSE This file is part of CFPropertyList.

Author: Rodney Rehm <rodney.rehm@medialize.de>
Author: Christian Kruse <cjk@wwwtech.de>
Copyright: Copyright © 2018 Teclib
License: MIT
File Size: 285 lines (9 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

CFArray:: (17 methods):
  __construct()
  setValue()
  add()
  get()
  del()
  toXML()
  toBinary()
  toArray()
  rewind()
  current()
  key()
  next()
  valid()
  offsetExists()
  offsetGet()
  offsetSet()
  offsetUnset()


Class: CFArray  - X-Ref

Array Type of CFPropertyList

__construct($value = array()   X-Ref
Create new CFType.

param: array $value Value of CFType

setValue($value)   X-Ref
Set the CFType's value
<b>Note:</b> this dummy does nothing

return: void

add(CFType $value = null)   X-Ref
Add CFType to collection.

param: CFType $value CFType to add to collection, defaults to null which results in an empty {@link CFString}
return: void

get($key)   X-Ref
Get CFType from collection.

param: integer $key Key of CFType to retrieve from collection
return: CFType CFType found at $key, null else

del($key)   X-Ref
Remove CFType from collection.

param: integer $key Key of CFType to removes from collection
return: CFType removed CFType, null else

toXML(DOMDocument $doc, $nodeName = "")   X-Ref
Get XML-Node.

param: DOMDocument $doc DOMDocument to create DOMNode in
param: string $nodeName For compatibility reasons; just ignore it
return: DOMNode &lt;array&gt;-Element

toBinary(CFBinaryPropertyList &$bplist)   X-Ref
convert value to binary representation

param: CFBinaryPropertyList The binary property list object
return: The offset in the object table

toArray()   X-Ref
Get CFType's value.

return: array primitive value

rewind()   X-Ref
Rewind {@link $iteratorPosition} to first position (being 0)

return: void

current()   X-Ref
Get Iterator's current {@link CFType} identified by {@link $iteratorPosition}

return: CFType current Item

key()   X-Ref
Get Iterator's current key identified by {@link $iteratorPosition}

return: string key of the current Item

next()   X-Ref
Increment {@link $iteratorPosition} to address next {@see CFType}

return: void

valid()   X-Ref
Test if {@link $iteratorPosition} addresses a valid element of {@link $value}

return: boolean true if current position is valid, false else

offsetExists($key)   X-Ref
Determine if the array's key exists

author: Sean Coates <sean@php.net>
param: string $key the key to check
return: bool true if the offset exists, false if not

offsetGet($key)   X-Ref
Fetch a specific key from the CFArray

author: Sean Coates <sean@php.net>
param: string $key the key to check
return: mixed the value associated with the key; null if the key is not found

offsetSet($key, $value)   X-Ref
Set a value in the array

author: Sean Coates <sean@php.net>
param: string $key the key to set
param: string $value the value to set
return: void

offsetUnset($key)   X-Ref
Unsets a value in the array
<b>Note:</b> this dummy does nothing

author: Sean Coates <sean@php.net>
param: string $key the key to set
return: void