You are here

public function EntityPagerSetup::getViewResult in Entity Pager 7

Get View Result.

Get the part of the View object that contains the Views result data.

Parameters

object $view: The view object.

Return value

array The view result.

2 calls to EntityPagerSetup::getViewResult()
EntityPagerOut::calculateNextAllPrevValuesFromView in includes/EntityPagerOut.inc
Calculate the values for the links.
EntityPagerSetup::setView in includes/EntityPagerSetup.inc
Set View.

File

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

Class

EntityPagerSetup
Class EntityPagerSetup.

Code

public function getViewResult($view) {
  return $view->result;
}