From d3d992d4b5e958b4d693948a17441784e0dc0128 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 22 Nov 2011 23:42:40 -0600 Subject: [PATCH] adding paginator comments. --- laravel/paginator.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/laravel/paginator.php b/laravel/paginator.php index 9046bc75..8196feea 100644 --- a/laravel/paginator.php +++ b/laravel/paginator.php @@ -330,6 +330,10 @@ protected function range($start, $end) { $pages = array(); + // To generate the range of page links, we will iterate through each page + // and, if the current page matches the page, we will generate a span, + // otherwise we will generate a link for the page. The span elements + // will be assigned the "current" CSS class for convenient styling. for ($page = $start; $page <= $end; $page++) { if ($this->page == $page) @@ -355,6 +359,9 @@ protected function range($start, $end) */ protected function link($page, $text, $class) { + // First we need to construct the link's query string. This consists + // of the page number and any developer specified items that should + // be appended to the query string. $query = '?page='.$page.$this->appendage($this->appends); return HTML::link(URI::current().$query, $text, compact('class'), Request::secure());