You are here

protected function EntityPagerSetup::setField in Entity Pager 7

Generic 'Setter' for fields.

A generic setter to set the values of a field.

Parameters

string $field: The field to set.

string $value: The value of the field to set.

3 calls to EntityPagerSetup::setField()
EntityPagerOut::entityRefUrlFromToken in includes/EntityPagerOut.inc
Process Entity Reference URL from tokens.
EntityPagerSetup::setAllTitle in includes/EntityPagerSetup.inc
Set All Title.
EntityPagerSetup::setAllUrl in includes/EntityPagerSetup.inc
Set Link All Url.

File

includes/EntityPagerSetup.inc, line 66
General setup base Class for Entity Pager module.

Class

EntityPagerSetup
Class EntityPagerSetup.

Code

protected function setField($field, $value) {
  $this->outSettings->{$field} = $value;
}