You are here

public function EntityPagerSetup::getAllUrl in Entity Pager 7

Get All URL.

This 'get' could have been pulled from the dynamic function, but listing it's full name means IDE's will prompt (help) developers with the possible 'get' choices. This is helpful for speedy development when sharing code on Open Source projects.

Return value

text The value that was set in the options of the View for the All URL.

1 call to EntityPagerSetup::getAllUrl()
EntityPagerOut::calculateNextAllPrevValuesFromView in includes/EntityPagerOut.inc
Calculate the values for the links.

File

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

Class

EntityPagerSetup
Class EntityPagerSetup.

Code

public function getAllUrl() {
  return $this
    ->getField('all_url');
}