You are here

public function EntityPagerSetup::setAllUrl in Entity Pager 7

Set Link All Url.

This 'set' could have been left as a dynamic function (i.e. setField(), but listing it's full name (i.e. setAllUrl() ) means developers IDEs will prompt (help) them with the possible 'set' choices. This IDE prompting makes it easy for other developers to work with the code quickly and easily on this Open Source project.

Parameters

string $url: Set the value that was set in the options of the View for the All Title.

1 call to EntityPagerSetup::setAllUrl()
EntityPagerOut::tokenLink in includes/EntityPagerOut.inc
Process Token link.

File

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

Class

EntityPagerSetup
Class EntityPagerSetup.

Code

public function setAllUrl($url) {
  $this
    ->setField('all_url', $url);
}