Welcome Guest, Not a member yet? Register   Sign In
Pagination first link with suffix
#5

[eluser]Unknown[/eluser]
Hey, you can have the first page include GET params without hacking by using the first_url config setting.

Code:
$config['first_url'] = $config['base_url'].$config['suffix'];

Example:
Code:
$config['base_url'] = 'http://mysite.com/controller/index';
$config['total_rows'] = 200;
$config['per_page'] = 20;
$config['suffix'] = '?'.http_build_query($_GET, '', "&");
$config['first_url'] = $config['base_url'].$config['suffix'];
$this->pagination->initialize($config);

I don't know if there's any documentation on this. I found it by looking through source code.


Messages In This Thread
Pagination first link with suffix - by El Forum - 01-10-2012, 08:56 AM
Pagination first link with suffix - by El Forum - 04-09-2012, 03:41 AM
Pagination first link with suffix - by El Forum - 04-09-2012, 07:45 AM
Pagination first link with suffix - by El Forum - 04-26-2012, 12:12 AM
Pagination first link with suffix - by El Forum - 05-29-2012, 10:57 AM



Theme © iAndrew 2016 - Forum software by © MyBB