Renders the pager, if necessary.
string[] $exposed_input: The input values from the exposed forms and sorts of the view.
array|string The render array of the pager if it's set, blank string otherwise.
public function renderPager($exposed_input) { if ($this->usePager()) { return $this->pager ->render($exposed_input); } return ''; }