protected function EntityPagerSetup::getField in Entity Pager 7
Generic 'Getter' for fields.
A generic getter to get the values of a field.
Parameters
string $field: Get a specific field.
Return value
bool The value of the field a specific field.
2 calls to EntityPagerSetup::getField()
- EntityPagerSetup::getAllTitle in includes/
EntityPagerSetup.inc - Get All Title.
- EntityPagerSetup::getAllUrl in includes/
EntityPagerSetup.inc - Get All URL.
File
- includes/
EntityPagerSetup.inc, line 81 - General setup base Class for Entity Pager module.
Class
- EntityPagerSetup
- Class EntityPagerSetup.
Code
protected function getField($field) {
if (isset($this->outSettings->{$field})) {
return $this->outSettings->{$field};
}
return FALSE;
}