diff options
author | Silvio <silvio@devlet.com.br> | 2010-07-16 18:33:11 -0300 |
---|---|---|
committer | Silvio <silvio@devlet.com.br> | 2010-07-16 18:33:11 -0300 |
commit | ee93a3e79f21969548b920c20e4d9bdfa6f3ec5e (patch) | |
tree | 8f83915b38e5ab54dab11e60953c68f5f236b04c /classes/iterators | |
parent | d9f864a13f9216b7ee78a85c53d3184220eb01c3 (diff) | |
download | cinisis-ee93a3e79f21969548b920c20e4d9bdfa6f3ec5e.tar.gz cinisis-ee93a3e79f21969548b920c20e4d9bdfa6f3ec5e.tar.bz2 |
TODO: main mapping for IsisSubfieldIterator
Diffstat (limited to 'classes/iterators')
-rw-r--r-- | classes/iterators/IsisSubfieldIterator.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/classes/iterators/IsisSubfieldIterator.php b/classes/iterators/IsisSubfieldIterator.php index 36d3d06..7e01687 100644 --- a/classes/iterators/IsisSubfieldIterator.php +++ b/classes/iterators/IsisSubfieldIterator.php @@ -21,8 +21,15 @@ class IsisSubfieldIterator implements Iterator * * @param $field * Field to iterate over. + * + * @param $main + * Control to which subfield the main field should be mapped to. + * By default no mapping is made. + * + * @todo + * Implement $main mapping. */ - public function __construct($class, $field) { + public function __construct($class, $field, $main = false) { $this->class = $class; $this->field = $field; $this->rows = $class->getRows($field); |