TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old 03-15-2009, 02:22 AM   #1 (permalink)
The Contributor
 
ioan1k's Avatar
 
Join Date: Mar 2009
Location: US
Posts: 76
Thanks: 0
ioan1k is on a distinguished road
Default Pagelite Pagination System

Here is a pagination system I wrote, I use it personally within the Zend Framework.
I am in the process of implementing a Plugin System and a database query builder ( still will keep the PHP only support but simply build a SQL query based off the information given and return it )

Tell me what you think and some possible improvements

Description

PageLite is a extremely light weight, portable and simple to use
pagiation system.

It is built using strict OOP technology and standards and runs
completely based off of PHP code, which means it does not require a connection to a database to run.

It supports both mod_rewrite and regular style links.

PageLite is compatible with any and all Data storing method
wether it is a MySQL Server or a old-skool flat-file datastore
PageLite can built a pagination for it.

Pagelite only requires 3 lines of code to run ( 2 lines if you use php's autoload function ) and will build and return
information that you can put into your information query retrieval method.

The goal of PageLite is to provide a simple, easy to use and powerful
pagiation system for everyone and a flexiable and extendable system
for advanced users.

PageLite once run will automatically build a default page set configuration, and only requries two parameters to run the total number of items that are being seperated into pages and the URL link for the pages.
PageLite will build and return a complete Pagination with forward, backwards, next, backward jumping, forward jumping, first, and last page links.
Pagelites ouput processing method is completely customizable and can be manipulated to display the page results in any desired format, allowing you to make a customized look and feel to your class.

Pagelite is independent and can support an unlimited number of pagination outputs on a page with advanced option settings and new instances of the class.

PageLite does not support any kind of DB connection methods, it does however provide all information that is required to sort results such as the Start and Limit numbers for SQL Queries

Main File
PHP Code:
<?php

/*
 *******************************************************
 *   PageLite Pagiation System                         #
 *******************************************************
 *
 * PageLite is a extremely light weight, portable and simple to use
 * pagiation system.
 *
 * It is built using strict OOP technology and standards and runs
 * completely based off of PHP code, which means there is no
 * Database communication required.
 *
 * PageLite is compatiable with any and all Data storing method
 * wether it is a MySQL Server or a old-skool flat-file datastore
 * PageLite can built a pagination for it.
 *
 * Pagelite only requires 2 lines of code to run and will build and return
 * information that you can put into your information query retrieval method.
 *
 * The goal of PageLite is to provide a simple, easy to use and powerful
 * pagiation system for everyone and a flexiable and extendable system
 * for advanced users
 *
 * If you would like to thank me for pageLite shoot me an email.
 *
 * Have Fun and happy coding!
 *
 * @copyright Copyright (c) Nickolas Whiting, 2008
 * @license GNU/GPL
 * @author Nickolas Whiting <nwhiting@xstudiosinc.com>
 * @version 1.0
 *
 * @todo Intergrate Plugin System
 */

class Page_Lite
{
    
/*
     * Total Number of items that are being sorted by the SQL Query
     *
     * @access protected
     */

    
protected $_totalItems null;

    
/*
     * Url Link that will be used for pagination
     *
     * @access protected
     */

    
protected $_pagiUrl null;

    
/*
     * Total Number of items per page
     *
     * @access protected
     */

    
protected $_perPage 10;

    
/*
     * Total Number of lines to display half on each side of current page
     *
     * @access protected
     */

    
protected $_range 5;

    
/*
     * Use mod_rewrite style links
     *
     * @access protected
     */

    
protected $_rewrite false;

    
/*
     * Use page Jumping links ( 3, 7, 13, 25 )
     *
     * @access protected
     */

    
protected $_pageJump true;

    
/*
     * Total Number of jumps to perform per side
     *
     * @access protected
     */

    
protected $_jumpCount 5;

    
/*
     * Calculation number for a jump link ( currentPageLink * number = jumpLink)
     *
     * Lower numbers are recommended for foward jumping Anything over 1.25 will cause the links to jump
     * at a very high rate
     *
     * @access protected
     */

    
protected $_jumpCalcFoward 1.15;

    
/*
     * Calculation number for a jump link ( currentPageLink * number = jumpLink)
     *
     * Lower numbers are not recommended for backwards jumping Anything under 1.25 will cause the links allmost to completely not jump
     *
     * @access protected
     */

    
protected $_jumpCalcBackward 1.25;

    
/*
     * GET Variable that the current page number is stored in
     *
     * @access protected
     */

    
protected $_pageIdentifer 'page';

    
/*
     * Automatically extract the page number based on the pageIdenitifer
     *
     * @access protected
     */

    
protected $_useAutoIdentifier true;

    
/*
     * Total Number of pages based on totalItems / perPage
     *
     * @access public
     */

    
public $totalPages null;

    
/*
     * Styleization Array
     *
     * @access public
     * @static
     */

    
public static $styleArray = array(
                                      
'start'           => '',
                                      
'end'              => '',
                                      
'first_start'   => '',
                                      
'first_end'     => '',
                                      
'last_start'    => '',
                                      
'last_end'      => '',
                                      
'current_start' => '',
                                      
'current_end'   => '',
                                      
'link_start'    => '',
                                      
'link_end'      => '',
                                      
'next_start'       => '',
                                      
'next_end'      => '',
                                      
'prev_start'    => '',
                                      
'prev_end'      => ''
                                      
);

    
/*
     * Current Page
     *
     * @access protected
     */

    
public $currentPage null;

    
/*
     * Option to show the link to the first page results
     *
     * @access protected
     */

    
protected $_displayLinkFirst true;

    
/*
     * Option to show link for the previous page results
     *
     * @access protected
     */

    
protected $_displayLinkPrev true;

    
/*
     * Option to show the link to the last page results
     *
     * @access protected
     */

    
protected $_displayLinkLast true;

    
/*
     * Option to show the link to the next page results
     *
     * @access protected
     */

    
protected $_displayLinkNext true;

    
/*
     * Text to be displayed for page 1 link
     *
     * @access protected
     */

    
public $linkPageOne '[&laquo;]';

    
/*
     * Text to be displayed for prev page link
     *
     * @access protected
     */

    
public $linkPagePrev '&laquo;';

    
/*
     * Text to be displayed for Last page link
     *
     * @access protected
     */

    
public $linkPageLast '[&raquo;]';

    
/*
     * Text to be displayed for next page link
     *
     * @access protected
     */

    
public $linkPageNext '&raquo;';

    
/*
     * Constructor
     *
     * Set the total number of items and the pageURL, also check for pageIdentifier and try and get current page number
     * if not set
     *
     * @access protected
     */

    
public function __construct($totalItems$pagiUrl)
    {
        
$this->setTotalItems($totalItems);

        
$this->setPageUrl($pagiUrl);
    }

    
/*
     * Sets option to display 1st page link
     */

    
public function setDisplayLinkFirst($flag)
    {
        
$this->_displayLinkFirst $flag;
    }

    
/*
     * Sets option to display Prev Page link
     */

    
public function setDisplayLinkPrev($str)
    {
        
$this->_displayLinkPrev $str;
    }

    
/*
     * Sets option to display Last page link
     */

    
public function setDisplayLinkLast($flag)
    {
        
$this->_displayLinkLast $flag;
    }

    
/*
     * Sets option to display Next page link
     */

    
public function setDisplayLinkNext($str)
    {
        
$this->_displayLinkNext $flag;
    }

    
/*
     * Sets text that will be displayed for 1st page link
     */

    
public function setLinkFirst($str)
    {
        
$this->linkPageOne $str;
    }

    
/*
     * Sets text that will be displayed for next page link
     */

    
public function setLinkNext($str)
    {
        
$this->linkPageNext $str;
    }

    
/*
     * Sets text that will be displayed for last page link
     */

    
public function setLinkLast($str)
    {
        
$this->linkPageLast $str;
    }

    
/*
     * Sets text that will be displayed for prev page link
     */

    
public function setLinkPrev($str)
    {
        
$this->linkPagePrev $str;
    }

    
/*
     * Sets the pageIdentifier
     *
     * @access protected
     */

    
public function setIdentifier($str)
    {
        
$this->_pageIdentifer $str;
    }

    
/*
     * Sets the current Page
     *
     * @access protected
     */

    
public function setCurrentPage($int)
    {
        
$this->currentPage $int;
    }

    
/*
     * Register the AutoIdentifier on|off
     *
     * @access protected
     */

    
public function setAutoIdentifier($flag)
    {
        
$this->_useAutoIdentifier $flag;
    }

    
/*
     * Sets the style that will be used to parse out the pagination
     *
     * @access public
     */

    
public function setStyleArray($style)
    {
        
$this->styleArray $style;
    }


    
/*
     * Checks and returns if the page number
     *
     * @access public
     */

    
public function getCurrentPage()
    {
        
// Check if auto identify is disabled if so we dont worry if the page count is correct
        
if ( $this->_useAutoIdentifier == false )
        {
            return 
$this->currentPage;
        }
        else
        {

            if (
$_GET[$this->_pageIdentifer])
            {
                
$this->currentPage = (int) $_GET[$this->_pageIdentifer];

                return (int) 
$_GET[$this->_pageIdentifer];
            }
            else
            {
                
$this->currentPage 1;
                return 
1;
            }
        }
    }

    
/*
     * Set the page range
     * @access public
     */

    
public function setRange($count)
    {
        
$this->_range $count;
    }

    
/*
     * Sets the number of jump Links
     * @access public
     */

    
public function setPageJumpCount($count)
    {
        
$this->_jumpCount $count;
    }

    
/*
     * Set page jumping on|off
     * @access public
     */

    
public function setPageJump($flag)
    {
        
$this->_pageJump $flag;
    }

    
/*
     * Sets the use of mod_rewrite style links
     * @access public
     */

    
public function setRewrite($flag)
    {
        
$this->_rewrite $flag;
    }

    
/*
     * Sets the total number of items
     *
     * @access public
     */

    
public function setTotalItems($int)
    {
        
$this->_totalItems $int;
    }

    
/*
     * Sets the Jump Forward Calculator
     *
     * @access public
     */

    
public function setJumpCalForward($int)
    {
        
$this->_jumpCalcFoward $int;
    }

    
/*
     * Sets the Jump Forward Calculator
     *
     * @access public
     */

    
public function setJumpCalBackward($int)
    {
        
$this->_jumpCalcBackward $int;
    }

    
/*
     * Sets the pageUrl
     *
     * @access public
     */

    
public function setPageUrl($url)
    {
        
$this->_pagiUrl $url;
    }

    
/*
     * Sets the number of items per page
     *
     * @access public
     */

    
public function setPerPage($int)
    {
        
$this->_perPage $int;
    }

    
/*
     * Returns the number of items that are displayed per page
     *
     * @access public
     */

    
public function getPerPage()
    {
        return 
$this->_perPage;
    }

    public function 
getStart()
    {
        return (
$this->getCurrentPage() == 1) ? : ($this->getCurrentPage() - 1) * $this->getPerPage();
    }

    
/*
     * Calculates the total number of pages based on the totalItems and Perpage
     *
     * @access public
     */

    
public function calculatePageTotal()
    {
        return 
$this->totalPages floor( ($this->_totalItems) / ($this->_perPage) );
    }

    
/*
     * Returns the total number of pages
     *
     * @access public
     * @return int
     */

    
public function getTotalPages()
    {
        return 
$this->calculatePageTotal();
    }

    
/*
     * Build the pagination
     *
     * @access public
     * @return string
     */

    
public function build()
    {

        
$return '';

        
$back '';

        
// Figure out the total number of pages. Always round up :)>
        
$totalPages $this->getTotalPages();

        
$range ceil($this->_range 2);

        
$jumpRange ceil($this->_jumpCount 2);

        
$return .= $this->styleArray['start'];

        
$currentPage $this->getCurrentPage();

        if (
$this->_rewrite == true)
        {
            
$append '/';
        }
        elseif ( 
strpos($this->_pagiUrl'?') === false )
        {
            
$append '?'.$this->_pageIdentifer.'=';
        }
        else
        {
            
$append '&'.$this->_pageIdentifer.'=';
        }

        if (
$currentPage != && $this->_displayLinkFirst == true)
        {
            
$return .= $this->styleArray['first_start'].' <a href="'.$this->_pagiUrl.$append.'1" title="Go to page 1  of '.$totalPages.'">'.$this->linkPageOne.'</a>'.$this->styleArray['first_end'];
        }

        if (
$currentPage && $this->_displayLinkPrev == true)
        {
            
$prev = ($currentPage 1);
            
$return .= $this->styleArray['prev_start'].'  <a href="'.$this->_pagiUrl.$append.$prev.'" title="Go to page '.$prev.' of '.$totalPages.'">'.$this->linkPagePrev.'</a>  '.$this->styleArray['prev_end'];
        }

        
// Build Backward Links
        
for ($i 1$i <= $range$i++)
        {
            
$p $currentPage $i;
            if (
$p 0)
            {
                
$back .= $p.',';
            }
        }

        
$lastBack $currentPage $range 1;

        
// Backwards Jumps!

        // 1.2 Update
        // When jumping backwards we need to use floor....not ceil.....

        
if ($lastBack && $this->_pageJump == true)
        {
            for (
$i 1$i <= $jumpRange$i++)
            {

                
$lastBack floor($lastBack $this->_jumpCalcBackward);

                if (
$lastBack >= 2)
                {
                    
$back .= $lastBack ',';
                }
            }
        }

        
$back strrev($back);

        
$backJump explode(','$back);


        foreach (
$backJump as $rev)
        {
            if( 
$rev != null )
            {
                
$rev strrev($rev);
                
$return .= $this->styleArray['link_start'].'  <a href="'.$this->_pagiUrl.$append.$rev.'" title="Go to page '.$rev.' of '.$totalPages.'">'.$rev.'</a> '.$this->styleArray['link_end'];
            }
        }

        
$return .=  $this->styleArray['current_start'].''.$currentPage.'</span> '.$this->styleArray['current_end'];


        for (
$i 1$i <= $range$i++)
        {

            
$p $currentPage $i;
            if(
$p <= $totalPages)
            {
                
$return .= $this->styleArray['link_start'].' <a href="'.$this->_pagiUrl.$append.$p.'" title="Go to page '.$p.' of '.$totalPages.'">'.$p.'</a> '.$this->styleArray['link_end'];
            }
        }

        
$lastPage $currentPage $range;

        if (
$this->_pageJump == true)
        {
            for (
$i 1$i <= $jumpRange$i++)
            {
                
$lastPage ceil($lastPage $this->_jumpCalcFoward);

                if (
$lastPage <= $totalPages)
                {

                    
$return .= $this->styleArray['link_start'].' <a href="'.$this->_pagiUrl.$append.$lastPage.'" title="Go to page '.$lastPage.' of '.$totalPages.'">'.$lastPage.'</a> '.$this->styleArray['link_end'];
                }
            }
        }

        
// Build Next Link
        
if ($currentPage $totalPages && $totalPages != '0' && $this->_displayLinkNext == true)
        {
            
$next $currentPage 1;
            
$return .= $this->styleArray['next_start'].' <a href="'.$this->_pagiUrl.$append.$next.'" title="Go to page '.$next.' of '.$totalPages.'">'.$this->linkPageNext.'</a> '.$this->styleArray['next_end'];
        }

        if (
$currentPage != $totalPages && $totalPages != '0' && $this->_displayLinkLast == true)
        {
            
$return .= $this->styleArray['last_start'].'<a href="'.$this->_pagiUrl.$append.$totalPages.'" title="Go to page '.$totalPages.' of '.$totalPages.'">'.$this->linkPageLast.'</a>'.$this->styleArray['last_end'];
        }

        
$return .= $this->styleArray['end'];

        return  
$return;
    }
}


?>
PHP Code:
<style>
.pagination
{
    font-size: 13px;
    font-family: Georgia;
    color: #000;
}

.pagination a
{
    text-decoration: none;
}
</style>
<?php

require 'pagelite.php';

// Simple Usage
$pageLite = new Page_Lite(50'example.php');

echo 
'Simple Output <br />';
echo 
$pageLite->build();

// Advanced Usage

$pageLiteAdv = new Page_Lite(75'example.php');

// Config Options
$pageLiteAdv->setAutoIdentifier(true);
$pageLiteAdv->setIdentifier('p');
$pageLiteAdv->setPerPage(1);
$pageLiteAdv->setPageJumpCount(10);
$pageLiteAdv->setRange(5);
//$pageLiteAdv->setCurrentPage('125');
$pageLiteAdv->setStyleArray(array(
                                  
'start' => '<div class="pagination">',
                                  
'end'   => '<br /> You are current on page '.$pageLiteAdv->getCurrentPage().' of '.$pageLiteAdv->getTotalPages().'</div>',
                                  
'first_start' => '<em>',
                                  
'first_end' => '</em>',
                                  
'current_start' => ' { <b>',
                                  
'current_end' => '</b> } ',
                                  
'next_start' => '<em>',
                                  
'next_end' => '</em>',
                                  
'prev_start' => '<span style="text-decoration: underline;">',
                                  
'prev_end' => '</span>',
                                  
'link_start' => ' [ ',
                                  
'link_end' => ' ] ',
                                  
'last_start' => '<em>',
                                  
'last_end' => '</em>',));
$pageLiteAdv->setLinkFirst('Page 1');
$pageLiteAdv->setLinkLast('Go to Page '.$pageLiteAdv->getTotalPages());
$pageLiteAdv->setLinkPrev('Prev');
$pageLiteAdv->setDisplayLinkNext(false);
$pageLiteAdv->setDisplayLinkPrev(false);


echo 
'<br /><br />
Advanced Output <br />'
;

echo 
$pageLiteAdv->build();

// Example Database com with PageLite
$start $pageLiteAdv->getStart();
$limit $pageLiteAdv->getPerPage();

?>
Adv Results
Page 1 [ 4 ] [ 6 ] [ 8 ] [ 11 ] [ 14 ] [ 19 ] [ 20 ] [ 21 ] { 22 } [ 23 ] [ 24 ] [ 25 ] [ 29 ] [ 34 ] [ 40 ] [ 46 ] [ 53 ] Go to Page 75
You are current on page 22 of 75
__________________
My Portfolio - Work - Need freelance Work?
I've been developing 5 years now, and I learn something new everyday

Last edited by ioan1k : 03-16-2009 at 01:39 PM.
ioan1k is offline  
Reply With Quote
Old 10-18-2012, 01:48 PM   #2 (permalink)
The Addict
 
Join Date: Oct 2012
Posts: 244
Thanks: 0
dashixiong is on a distinguished road
Default

Some conservatives have Coach Factory Outlet pushed that critique further, saying that Mr. Obama’s policies are too costly, often assist the wrong people Louis Vuitton Belts and could have the paradoxical effect of driving up college costs. The dispute turns not just on different Coach Factory Outlet assessments of how policies play out, but on differing philosophical views about the role of government. During Gucci Belts his time in office, Mr. Obama has sharply increased aid to low- and middle-income students, notably through the Pell Grant Coach Factory Outlet program, which grew from $14.6 billion given to 6 million students in 2008, to nearly $40 billion for Coach Factory Outlet almost 10 million students this year. His administration also made it easier to request aid, shortening the Coach Factory Online complex federal application and allowing people to transfer their financial information electronically from the Internal Coach Outlet Online Revenue Service database. But while many education experts laud his efforts, analysts of varying political Coach Outlet Online stripes have also questioned how much impact some of the president’s policies will have, noting that the prices Coach Online Outlet charged by colleges, and student borrowing, continue to climb.But behind the headlines about soaring costs, the Coach Factory Outlet Online reality is more complex and wildly uneven, because a growing number of students receive Coach Outlet Online financial aid, and only relatively high-income families pay those fast-rising sticker prices. Adjusted for Coach Factory Online inflation, the College Board calculates, the average net price changed little over the last decade at private Coach Factory Outlet schools, and rose only modestly at public ones.Defending federal spending, Arne Duncan, the secretary of Hermes Belts education, said that for more than 30 years, college prices had risen even when federal aid had not, leading him to believe Coach Factory Online there was zero correlation.
dashixiong is offline  
Reply With Quote
Old 10-22-2012, 09:08 AM   #3 (permalink)
The Addict
 
Join Date: Oct 2012
Posts: 244
Thanks: 0
dashixiong is on a distinguished road
Default Coach Outlet

You’ve relativelyCoach Outlet recently arrived in New Delhi after living in two of Asia’s other great cities,Coach Outlet Store Online Tokyo and Hong Kong, for several years. Do these cities feel like they’re part of the same continent? Yes, and no. In terms Coach Factory Onlineof infrastructure, they couldn’t be more different. Getting regularCoach Outlet power and water at my house in New Delhi is never a sure thing, even though Coach Purse Outlet OnlineI’m paying the same rent that I paid in Tokyo and almost the same electricity prices. Both Hong Kong and Tokyo are also crowded places,Coach Factory Outlet Online but both cities are incredibly well planned and efficiently run. Efficient is not a word I would use to describe my Coach Bags Outlet Onlineday-to-day life in New Delhi. On the other hand, one thing that I think Hong Kong and New Delhi have in common isCoach Handbags Outlet a shared sense of optimism — a feeling that the best is yet to come. That’s definitely not the feeling you get in Tokyo,Coach Outlet Online or in the U.S. when I go home. It’s a big part of what I find addictive about living and working in this part of the world. You feel like you’re watching the future unfold.
dashixiong is offline  
Reply With Quote
Old 01-29-2013, 12:40 PM   #4 (permalink)
The Addict
 
Join Date: Oct 2012
Posts: 244
Thanks: 0
dashixiong is on a distinguished road
Default

Organizers said Coach Outlet Online was opportune because the battle’s 150-year anniversary is in December, and Fredericksburg Coach Factory Outlet has been preparing to mark the sesquicentennial. in the new agreement is that Coach Outlet Online revolutionary councils from 14 Syrian provinces now each have a representative, though not all live Coach Online Outlet in Syria. The hope is that will bind the coalition to those inside the country. Perhaps Coach Bags Outlet the most important body the new group is expected to form is a Revolutionary Military Council Coach Factory Online to oversee the splintered fighting organizations and to funnel both lethal and nonlethal Coach Factory Outlet military aid to the rebels. It should unite units of the Free Syrian Army, various militias Coach Outlet Store Online and brigades in each city and large groups of defectors. Before the ink was even dry on the Coach Outlet Store final draft, negotiators hoped that it would bring them the antiaircraft missiles they crave to Coach Factory Stores take on the Syrian Air Force. The United States and Britain have offered only Coach Handbags Outlet nonmilitary aid to the uprising. A similar attempt by the Syrian National Council to Coach Factory Store supervise the military never jelled. Organizers said funding was too haphazard. Eventually foreign Coach Factory Online governments like Qatar and Saudi Arabia, which are financing and arming the rebels, found Coach Factory Online their own favorite factions to deal with. Foreign leaders notably including Secretary of State Coach Outlet Hillary Rodham Clinton urged this unification largely so they could coordinate their Coach Factory Outlet efforts and aid through a group of technocrats. Once it receives international recognition, the Coach Outlet Store Online coalition is supposed to establish a temporary Coach Outlet Online military never jelled.
dashixiong is offline  
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Advance Pagination Class Rendair Advanced PHP Programming 13 02-01-2013 11:08 AM
Freelance Suite: Client & Project Management Software CLCook Show Off 2 09-14-2008 10:50 AM
Designing a tagging system Alan @ CIT Advanced PHP Programming 4 03-10-2008 03:25 PM
Are operating system commands system unique? Aaron Absolute Beginners 4 12-28-2007 07:19 PM
How do you plan your programs? Nor General 8 12-06-2007 09:57 PM


All times are GMT. The time now is 11:53 PM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design