Example #1
0
/**
 * This function computes the paginator string.
 *
 * @param string  $box               mailbox name
 * @param integer $iOffset           offset in total number of messages
 * @param integer $iTotal            total number of messages
 * @param integer $iLimit            maximum number of messages to show on a page
 * @param bool    $bShowAll          whether or not to show all messages at once 
 *                                   ("show all" == non paginate mode)
 * @param bool    $page_selector     whether or not to show the page selection widget
 * @param integer $page_selector_max maximum number of pages to show on the screen
 *
 * @return string $result   paginate string with links to pages
 *
 */
function get_paginator_str($box, $iOffset, $iTotal, $iLimit, $bShowAll, $page_selector, $page_selector_max)
{
    static $accesskeys_constructed = FALSE;
    /* This will be used as a space. */
    global $oTemplate, $nbsp;
    sqgetGlobalVar('PHP_SELF', $php_self, SQ_SERVER);
    /* Initialize paginator string chunks. */
    $prv_str = '';
    $nxt_str = '';
    $pg_str = '';
    $all_str = '';
    $box = urlencode($box);
    /* Create simple strings that will be creating the paginator. */
    /* This will be used as a seperator. */
    $sep = '|';
    /* Make sure that our start message number is not too big. */
    $iOffset = min($iOffset, $iTotal);
    /* Compute the starting message of the previous and next page group. */
    $next_grp = $iOffset + $iLimit;
    $prev_grp = $iOffset - $iLimit;
    if (!$bShowAll) {
        /* Compute the basic previous and next strings. */
        global $accesskey_mailbox_previous, $accesskey_mailbox_next;
        if ($next_grp <= $iTotal && $prev_grp >= 0) {
            $prv_str = get_paginator_link($box, $prev_grp, _("Previous"), $accesskeys_constructed ? 'NONE' : $accesskey_mailbox_previous);
            $nxt_str = get_paginator_link($box, $next_grp, _("Next"), $accesskeys_constructed ? 'NONE' : $accesskey_mailbox_next);
        } else {
            if ($next_grp > $iTotal && $prev_grp >= 0) {
                $prv_str = get_paginator_link($box, $prev_grp, _("Previous"), $accesskeys_constructed ? 'NONE' : $accesskey_mailbox_previous);
                $nxt_str = _("Next");
            } else {
                if ($next_grp <= $iTotal && $prev_grp < 0) {
                    $prv_str = _("Previous");
                    $nxt_str = get_paginator_link($box, $next_grp, _("Next"), $accesskeys_constructed ? 'NONE' : $accesskey_mailbox_next);
                }
            }
        }
        /* Page selector block. Following code computes page links. */
        if ($iLimit != 0 && $page_selector && $iTotal > $iLimit) {
            /* Most importantly, what is the current page!!! */
            $cur_pg = intval($iOffset / $iLimit) + 1;
            /* Compute total # of pages and # of paginator page links. */
            $tot_pgs = ceil($iTotal / $iLimit);
            /* Total number of Pages */
            $vis_pgs = min($page_selector_max, $tot_pgs - 1);
            /* Visible Pages    */
            /* Compute the size of the four quarters of the page links. */
            /* If we can, just show all the pages. */
            if ($tot_pgs - 1 <= $page_selector_max) {
                $q1_pgs = $cur_pg - 1;
                $q2_pgs = $q3_pgs = 0;
                $q4_pgs = $tot_pgs - $cur_pg;
                /* Otherwise, compute some magic to choose the four quarters. */
            } else {
                /*
                 * Compute the magic base values. Added together,
                 * these values will always equal to the $pag_pgs.
                 * NOTE: These are DEFAULT values and do not take
                 * the current page into account. That is below.
                 */
                $q1_pgs = floor($vis_pgs / 4);
                $q2_pgs = round($vis_pgs / 4, 0);
                $q3_pgs = ceil($vis_pgs / 4);
                $q4_pgs = round(($vis_pgs - $q2_pgs) / 3, 0);
                /* Adjust if the first quarter contains the current page. */
                if ($cur_pg - $q1_pgs < 1) {
                    $extra_pgs = $q1_pgs - ($cur_pg - 1) + $q2_pgs;
                    $q1_pgs = $cur_pg - 1;
                    $q2_pgs = 0;
                    $q3_pgs += ceil($extra_pgs / 2);
                    $q4_pgs += floor($extra_pgs / 2);
                    /* Adjust if the first and second quarters intersect. */
                } else {
                    if ($cur_pg - $q2_pgs - ceil($q2_pgs / 3) <= $q1_pgs) {
                        $extra_pgs = $q2_pgs;
                        $extra_pgs -= ceil(($cur_pg - $q1_pgs - 1) * 3 / 4);
                        $q2_pgs = ceil(($cur_pg - $q1_pgs - 1) * 3 / 4);
                        $q3_pgs += ceil($extra_pgs / 2);
                        $q4_pgs += floor($extra_pgs / 2);
                        /* Adjust if the fourth quarter contains the current page. */
                    } else {
                        if ($cur_pg + $q4_pgs >= $tot_pgs) {
                            $extra_pgs = $q4_pgs - ($tot_pgs - $cur_pg) + $q3_pgs;
                            $q3_pgs = 0;
                            $q4_pgs = $tot_pgs - $cur_pg;
                            $q1_pgs += floor($extra_pgs / 2);
                            $q2_pgs += ceil($extra_pgs / 2);
                            /* Adjust if the third and fourth quarter intersect. */
                        } else {
                            if ($cur_pg + $q3_pgs + 1 >= $tot_pgs - $q4_pgs + 1) {
                                $extra_pgs = $q3_pgs;
                                $extra_pgs -= ceil(($tot_pgs - $cur_pg - $q4_pgs) * 3 / 4);
                                $q3_pgs = ceil(($tot_pgs - $cur_pg - $q4_pgs) * 3 / 4);
                                $q1_pgs += floor($extra_pgs / 2);
                                $q2_pgs += ceil($extra_pgs / 2);
                            }
                        }
                    }
                }
            }
            /*
             * I am leaving this debug code here, commented out, because
             * it is a really nice way to see what the above code is doing.
             * echo "qts =  $q1_pgs/$q2_pgs/$q3_pgs/$q4_pgs = "
             *    . ($q1_pgs + $q2_pgs + $q3_pgs + $q4_pgs) . '<br />';
             */
            /* Print out the page links from the compute page quarters. */
            /* Start with the first quarter. */
            if ($q1_pgs == 0 && $cur_pg > 1) {
                $pg_str .= "...{$nbsp}";
            } else {
                for ($pg = 1; $pg <= $q1_pgs; ++$pg) {
                    $start = ($pg - 1) * $iLimit + 1;
                    $pg_str .= get_paginator_link($box, $start, $pg) . $nbsp;
                }
                if ($cur_pg - $q2_pgs - $q1_pgs > 1) {
                    $pg_str .= "...{$nbsp}";
                }
            }
            /* Continue with the second quarter. */
            for ($pg = $cur_pg - $q2_pgs; $pg < $cur_pg; ++$pg) {
                $start = ($pg - 1) * $iLimit + 1;
                $pg_str .= get_paginator_link($box, $start, $pg) . $nbsp;
            }
            /* Now print the current page. */
            $pg_str .= $cur_pg . $nbsp;
            /* Next comes the third quarter. */
            for ($pg = $cur_pg + 1; $pg <= $cur_pg + $q3_pgs; ++$pg) {
                $start = ($pg - 1) * $iLimit + 1;
                $pg_str .= get_paginator_link($box, $start, $pg) . $nbsp;
            }
            /* And last, print the forth quarter page links. */
            if ($q4_pgs == 0 && $cur_pg < $tot_pgs) {
                $pg_str .= "...{$nbsp}";
            } else {
                if ($tot_pgs - $q4_pgs > $cur_pg + $q3_pgs) {
                    $pg_str .= "...{$nbsp}";
                }
                for ($pg = $tot_pgs - $q4_pgs + 1; $pg <= $tot_pgs; ++$pg) {
                    $start = ($pg - 1) * $iLimit + 1;
                    $pg_str .= get_paginator_link($box, $start, $pg) . $nbsp;
                }
            }
            $last_grp = ($tot_pgs - 1) * $iLimit + 1;
        }
    } else {
        global $accesskey_mailbox_all_paginate;
        $pg_str = create_hyperlink("{$php_self}?showall=0&amp;startMessage=1&amp;mailbox={$box}" . (strpos($php_self, 'src/search.php') ? '&amp;smtoken=' . sm_generate_security_token() : ''), _("Paginate"), '', '', '', '', '', $accesskeys_constructed ? array() : array('accesskey' => $accesskey_mailbox_all_paginate));
    }
    /* Put all the pieces of the paginator string together. */
    /**
     * Hairy code... But let's leave it like it is since I am not certain
     * a different approach would be any easier to read. ;)
     */
    $result = '';
    if ($prv_str || $nxt_str) {
        /* Compute the 'show all' string. */
        global $accesskey_mailbox_all_paginate;
        $all_str = create_hyperlink("{$php_self}?showall=1&amp;startMessage=1&amp;mailbox={$box}" . (strpos($php_self, 'src/search.php') ? '&amp;smtoken=' . sm_generate_security_token() : ''), _("Show All"), '', '', '', '', '', $accesskeys_constructed ? array() : array('accesskey' => $accesskey_mailbox_all_paginate));
        $result .= '[';
        $result .= $prv_str != '' ? $prv_str . $nbsp . $sep . $nbsp : '';
        $result .= $nxt_str != '' ? $nxt_str : '';
        $result .= ']' . $nbsp;
    }
    $result .= $pg_str != '' ? $nbsp . '[' . $nbsp . $pg_str . ']' . $nbsp : '';
    $result .= $all_str != '' ? $nbsp . '[' . $all_str . ']' . $nbsp . $nbsp : '';
    /* If the resulting string is blank, return a non-breaking space. */
    if ($result == '') {
        $result = $nbsp;
    }
    $accesskeys_constructed = TRUE;
    /* Return our final magical compact paginator string. */
    return $result;
}
Example #2
0
function get_paginator_str($box, $start_msg, $end_msg, $num_msgs, $show_num, $sort)
{
    global $username, $data_dir, $use_mailbox_cache, $color, $PG_SHOWNUM;
    /* Initialize paginator string chunks. */
    $prv_str = '';
    $nxt_str = '';
    $pg_str = '';
    $all_str = '';
    $tgl_str = '';
    $box = urlencode($box);
    /* Create simple strings that will be creating the paginator. */
    $spc = '&nbsp;';
    /* This will be used as a space. */
    $sep = '|';
    /* This will be used as a seperator. */
    /* Get some paginator preference values. */
    $pg_sel = getPref($data_dir, $username, 'page_selector', SMPREF_ON);
    $pg_max = getPref($data_dir, $username, 'page_selector_max', PG_SEL_MAX);
    /* Make sure that our start message number is not too big. */
    $start_msg = min($start_msg, $num_msgs);
    /* Decide whether or not we will use the mailbox cache. */
    /* Not sure why $use_mailbox_cache is even passed in.   */
    if ($sort == 6) {
        $use = 0;
    } else {
        $use = 1;
    }
    /* Compute the starting message of the previous and next page group. */
    $next_grp = $start_msg + $show_num;
    $prev_grp = $start_msg - $show_num;
    /* Compute the basic previous and next strings. */
    if ($next_grp <= $num_msgs && $prev_grp >= 0) {
        $prv_str = get_paginator_link($box, $prev_grp, $use, _("Previous"));
        $nxt_str = get_paginator_link($box, $next_grp, $use, _("Next"));
    } else {
        if ($next_grp > $num_msgs && $prev_grp >= 0) {
            $prv_str = get_paginator_link($box, $prev_grp, $use, _("Previous"));
            $nxt_str = "<font color=\"{$color['9']}\">" . _("Next") . "</font>\n";
        } else {
            if ($next_grp <= $num_msgs && $prev_grp < 0) {
                $prv_str = "<font color=\"{$color['9']}\">" . _("Previous") . '</font>';
                $nxt_str = get_paginator_link($box, $next_grp, $use, _("Next"));
            }
        }
    }
    /* Page selector block. Following code computes page links. */
    if ($pg_sel && $num_msgs > $show_num) {
        /* Most importantly, what is the current page!!! */
        $cur_pg = intval($start_msg / $show_num) + 1;
        /* Compute total # of pages and # of paginator page links. */
        $tot_pgs = ceil($num_msgs / $show_num);
        /* Total number of Pages */
        $vis_pgs = min($pg_max, $tot_pgs - 1);
        /* Visible Pages    */
        /* Compute the size of the four quarters of the page links. */
        /* If we can, just show all the pages. */
        if ($tot_pgs - 1 <= $pg_max) {
            $q1_pgs = $cur_pg - 1;
            $q2_pgs = $q3_pgs = 0;
            $q4_pgs = $tot_pgs - $cur_pg;
            /* Otherwise, compute some magic to choose the four quarters. */
        } else {
            /*
             * Compute the magic base values. Added together,
             * these values will always equal to the $pag_pgs.
             * NOTE: These are DEFAULT values and do not take
             * the current page into account. That is below.
             */
            $q1_pgs = floor($vis_pgs / 4);
            $q2_pgs = round($vis_pgs / 4, 0);
            $q3_pgs = ceil($vis_pgs / 4);
            $q4_pgs = round(($vis_pgs - $q2_pgs) / 3, 0);
            /* Adjust if the first quarter contains the current page. */
            if ($cur_pg - $q1_pgs < 1) {
                $extra_pgs = $q1_pgs - ($cur_pg - 1) + $q2_pgs;
                $q1_pgs = $cur_pg - 1;
                $q2_pgs = 0;
                $q3_pgs += ceil($extra_pgs / 2);
                $q4_pgs += floor($extra_pgs / 2);
                /* Adjust if the first and second quarters intersect. */
            } else {
                if ($cur_pg - $q2_pgs - ceil($q2_pgs / 3) <= $q1_pgs) {
                    $extra_pgs = $q2_pgs;
                    $extra_pgs -= ceil(($cur_pg - $q1_pgs - 1) * 3 / 4);
                    $q2_pgs = ceil(($cur_pg - $q1_pgs - 1) * 3 / 4);
                    $q3_pgs += ceil($extra_pgs / 2);
                    $q4_pgs += floor($extra_pgs / 2);
                    /* Adjust if the fourth quarter contains the current page. */
                } else {
                    if ($cur_pg + $q4_pgs >= $tot_pgs) {
                        $extra_pgs = $q4_pgs - ($tot_pgs - $cur_pg) + $q3_pgs;
                        $q3_pgs = 0;
                        $q4_pgs = $tot_pgs - $cur_pg;
                        $q1_pgs += floor($extra_pgs / 2);
                        $q2_pgs += ceil($extra_pgs / 2);
                        /* Adjust if the third and fourth quarter intersect. */
                    } else {
                        if ($cur_pg + $q3_pgs >= $tot_pgs - $q4_pgs) {
                            $extra_pgs = $q3_pgs;
                            $extra_pgs -= ceil(($tot_pgs - $cur_pg - $q4_pgs) * 3 / 4);
                            $q3_pgs = ceil(($tot_pgs - $cur_pg - $q4_pgs) * 3 / 4);
                            $q1_pgs += floor($extra_pgs / 2);
                            $q2_pgs += ceil($extra_pgs / 2);
                        }
                    }
                }
            }
        }
        /*
         * I am leaving this debug code here, commented out, because
         * it is a really nice way to see what the above code is doing.
         */
        // echo "qts =  $q1_pgs/$q2_pgs/$q3_pgs/$q4_pgs = "
        //     . ($q1_pgs + $q2_pgs + $q3_pgs + $q4_pgs) . '<br>';
        /* Print out the page links from the compute page quarters. */
        /* Start with the first quarter. */
        if ($q1_pgs == 0 && $cur_pg > 1) {
            $pg_str .= "...{$spc}";
        } else {
            for ($pg = 1; $pg <= $q1_pgs; ++$pg) {
                $start = ($pg - 1) * $show_num + 1;
                $pg_str .= get_paginator_link($box, $start, $use, $pg) . $spc;
            }
            if ($cur_pg - $q2_pgs - $q1_pgs > 1) {
                $pg_str .= "...{$spc}";
            }
        }
        /* Continue with the second quarter. */
        for ($pg = $cur_pg - $q2_pgs; $pg < $cur_pg; ++$pg) {
            $start = ($pg - 1) * $show_num + 1;
            $pg_str .= get_paginator_link($box, $start, $use, $pg) . $spc;
        }
        /* Now print the current page. */
        $pg_str .= $cur_pg . $spc;
        /* Next comes the third quarter. */
        for ($pg = $cur_pg + 1; $pg <= $cur_pg + $q3_pgs; ++$pg) {
            $start = ($pg - 1) * $show_num + 1;
            $pg_str .= get_paginator_link($box, $start, $use, $pg) . $spc;
        }
        /* And last, print the forth quarter page links. */
        if ($q4_pgs == 0 && $cur_pg < $tot_pgs) {
            $pg_str .= "...{$spc}";
        } else {
            if ($tot_pgs - $q4_pgs > $cur_pg + $q3_pgs) {
                $pg_str .= "...{$spc}";
            }
            for ($pg = $tot_pgs - $q4_pgs + 1; $pg <= $tot_pgs; ++$pg) {
                $start = ($pg - 1) * $show_num + 1;
                $pg_str .= get_paginator_link($box, $start, $use, $pg) . $spc;
            }
        }
    } else {
        if ($PG_SHOWNUM == 999999) {
            $pg_str = "<a href=\"right_main.php?PG_SHOWALL=0" . "&amp;use_mailbox_cache={$use}&amp;startMessage=1&amp;mailbox={$box}\" " . ">" . _("Paginate") . '</a>' . $spc;
        }
    }
    /* If necessary, compute the 'show all' string. */
    if ($prv_str != '' || $nxt_str != '') {
        $all_str = "<a href=\"right_main.php?PG_SHOWALL=1" . "&amp;use_mailbox_cache={$use}&amp;startMessage=1&amp;mailbox={$box}\" " . ">" . _("Show All") . '</a>';
    }
    /* Last but not least, get the value for the toggle all link. */
    $tgl_str = get_selectall_link($start_msg, $sort);
    /* Put all the pieces of the paginator string together. */
    /**
     * Hairy code... But let's leave it like it is since I am not certain
     * a different approach would be any easier to read. ;)
     */
    $result = '';
    $result .= $prv_str != '' ? $prv_str . $spc . $sep . $spc : '';
    $result .= $nxt_str != '' ? $nxt_str . $spc . $sep . $spc : '';
    $result .= $pg_str != '' ? $pg_str : '';
    $result .= $all_str != '' ? $sep . $spc . $all_str . $spc : '';
    $result .= $result != '' ? $sep . $spc . $tgl_str : $tgl_str;
    /* If the resulting string is blank, return a non-breaking space. */
    if ($result == '') {
        $result = '&nbsp;';
    }
    /* Return our final magical paginator string. */
    return $result;
}