mirror of
https://github.com/e107inc/e107.git
synced 2025-01-29 10:38:08 +01:00
Issue #2032 May fix some pagination issues.
This commit is contained in:
parent
4b3317ad18
commit
e14a470951
@ -68,7 +68,7 @@ function nextprev_shortcode($parm = '')
|
||||
* New parameter requirements formatted as a GET string.
|
||||
* Template support.
|
||||
*/
|
||||
if(is_string($parm) && strpos($parm, 'total=') !== false)
|
||||
if(strpos($parm, 'total=') !== false)
|
||||
{
|
||||
parse_str($parm, $parm);
|
||||
|
||||
@ -363,10 +363,6 @@ function nextprev_shortcode($parm = '')
|
||||
*/
|
||||
else
|
||||
{
|
||||
if(empty($parm))
|
||||
{
|
||||
$parm = '';
|
||||
}
|
||||
$parm_count = substr_count($parm, ',');
|
||||
while($parm_count < 5)
|
||||
{
|
||||
|
@ -91,16 +91,16 @@ $NEXTPREV_TEMPLATE['bootstrap_separator'] = '';
|
||||
// Basic template - as used in admin theme-manager - find themes.
|
||||
//XXX FIXME - use $NEXTPREV_TEMPLATE['basic']['start'] format.??
|
||||
|
||||
$NEXTPREV_TEMPLATE['basic_start'] = '<!-- Start of Next/Prev --><div class="btn-group ">';
|
||||
$NEXTPREV_TEMPLATE['basic_start'] = '<!-- Start of Next/Prev --><div class="nextprev-basic btn-group ">';
|
||||
$NEXTPREV_TEMPLATE['basic_end'] = '</div><!-- End of Next/Prev -->';
|
||||
$NEXTPREV_TEMPLATE['basic_nav_caption'] = '';
|
||||
$NEXTPREV_TEMPLATE['basic_nav_first'] = '';
|
||||
$NEXTPREV_TEMPLATE['basic_nav_prev'] = '<a class="btn btn-primary nextprev-item prev e-tip" href="{url}" title="{url_label}"><i class="icon-backward"></i></a>';
|
||||
$NEXTPREV_TEMPLATE['basic_nav_prev'] = '<a class="btn btn-default nextprev-item prev" href="{url}" title="{url_label}"><i class="fa fa-backward"></i></a>';
|
||||
$NEXTPREV_TEMPLATE['basic_nav_last'] = '';
|
||||
$NEXTPREV_TEMPLATE['basic_nav_next'] = '<a class="btn btn-primary nextprev-item next e-tip" href="{url}" title="{url_label}"><i class="icon-forward"></i></a>';
|
||||
$NEXTPREV_TEMPLATE['basic_nav_next'] = '<a class="btn btn-default nextprev-item next " href="{url}" title="{url_label}"><i class="fa fa-forward"></i></a>';
|
||||
$NEXTPREV_TEMPLATE['basic_items_start'] = '';
|
||||
$NEXTPREV_TEMPLATE['basic_item'] = '';
|
||||
$NEXTPREV_TEMPLATE['basic_item_current'] = '<a class="btn btn-primary">{label}</a>';
|
||||
$NEXTPREV_TEMPLATE['basic_item_current'] = '<a class="btn btn-default">{label}</a>';
|
||||
$NEXTPREV_TEMPLATE['basic_items_end'] = '';
|
||||
$NEXTPREV_TEMPLATE['basic_separator'] = '';
|
||||
|
||||
@ -110,15 +110,9 @@ $NEXTPREV_TEMPLATE['basic_separator'] = '';
|
||||
// ADMIN TEMPLATE see admin-ui.
|
||||
|
||||
|
||||
$NEXTPREV_TEMPLATE['admin_start'] = '
|
||||
<!-- Start of Next/Prev -->
|
||||
<div class="pagination nextprev ">
|
||||
<ul class="pagination">';
|
||||
$NEXTPREV_TEMPLATE['admin_start'] = '<!-- Start of Next/Prev --><div class="pagination nextprev "><ul class="pagination">';
|
||||
|
||||
$NEXTPREV_TEMPLATE['admin_end'] = '
|
||||
</ul></div>
|
||||
<!-- End of Next/Prev -->
|
||||
';
|
||||
$NEXTPREV_TEMPLATE['admin_end'] = '</ul></div><!-- End of Next/Prev -->';
|
||||
|
||||
//$NEXTPREV_TEMPLATE['admin_nav_caption'] = '<span class="nexprev-caption center">{caption}</span> '; XXX - awaiting the new front-end themes & templates
|
||||
$NEXTPREV_TEMPLATE['admin_nav_caption'] = ''; // NP_3.' ';
|
||||
@ -139,6 +133,11 @@ $NEXTPREV_TEMPLATE['admin_separator'] = ' ';
|
||||
|
||||
// ######################################
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* Dropdown page navigation, key prefix 'dropdown'
|
||||
* Shortcodes are lowercase (simple parser)
|
||||
|
Loading…
x
Reference in New Issue
Block a user