Zend Framework
1.12
|
Public Member Functions | |
__construct ($images, $adapter=null) | |
Constructor. | |
count () | |
Return number of images. | |
current () | |
Return the current element. | |
key () | |
Return the key of the current element. | |
next () | |
Move forward to next element. | |
rewind () | |
Rewind the Iterator to the first element. | |
valid () | |
Check if there is a current element after calls to rewind() or next() | |
offsetExists ($offset) | |
Whether the offset exists. | |
offsetGet ($offset) | |
Return value at given offset. | |
offsetSet ($offset, $value) | |
Throws exception because all values are read-only. | |
offsetUnset ($offset) | |
Throws exception because all values are read-only. | |
Protected Member Functions | |
constructFromArray (array $list) | |
Transforms the Array to array of Instances. | |
addImage (Zend_Cloud_Infrastructure_Image $image) | |
Add an image. | |
Protected Attributes | |
$images = array() | |
$iteratorKey = 0 | |
$adapter | |
__construct | ( | $images, | |
$adapter = null |
|||
) |
Constructor.
array | $list | |
null | object | $adapter |
|
protected |
Add an image.
Image |
|
protected |
Transforms the Array to array of Instances.
array | $list |
count | ( | ) |
Return number of images.
Implement Countable::count()
current | ( | ) |
Return the current element.
Implement Iterator::current()
int Iterator key | ( | ) |
Return the key of the current element.
Implement Iterator::key()
next | ( | ) |
Move forward to next element.
Implement Iterator::next()
offsetExists | ( | $offset | ) |
Whether the offset exists.
Implement ArrayAccess::offsetExists()
int | $offset |
offsetGet | ( | $offset | ) |
Return value at given offset.
Implement ArrayAccess::offsetGet()
int | $offset |
Zend_Cloud_Infrastructure_Exception |
offsetSet | ( | $offset, | |
$value | |||
) |
Throws exception because all values are read-only.
Implement ArrayAccess::offsetSet()
int | $offset | |
string | $value |
Zend_Cloud_Infrastructure_Exception |
offsetUnset | ( | $offset | ) |
Throws exception because all values are read-only.
Implement ArrayAccess::offsetUnset()
int | $offset |
Zend_Cloud_Infrastructure_Exception |
rewind | ( | ) |
Rewind the Iterator to the first element.
Implement Iterator::rewind()
valid | ( | ) |
|
protected |
|
protected |
|
protected |