public function DBObject::valid in Entity Construction Kit (ECK) 7.2
Same name and namespace in other branches
- 7.3 eck.classes.inc \DBObject::valid()
From Iterator Interface.
File
- ./
eck.classes.inc, line 197 - Classes for all the different objects used in ECK.
Class
- DBObject
- @file Classes for all the different objects used in ECK.
Code
public function valid() {
if (in_array($this->position, array_keys($this->vars))) {
return TRUE;
}
else {
return FALSE;
}
}