Sledge::Plugin::Paginate - data paginate plugin for Sledge


Sledge-Plugin-Paginate documentation  | view source Contained in the Sledge-Plugin-Paginate distribution.

Index


NAME

Top

Sledge::Plugin::Paginate - data paginate plugin for Sledge

VERSION

Top

This documentation refers to Sledge::Plugin::Paginate version 0.01

SYNOPSIS

Top

    package Your::Pages;
    use Sledge::Plugin::Paginate;

    sub dispatch_index {
        my $self = shift;

        my @users = $self->user;

        $self->paginate(
            paging_num => $self->config->paging_num,
            page_name  => 'user',
            data       => \@users,
        );
    }

METHODS

Top

paginate

This paginate plugin can easily execute paging.

AUTHOR

Top

Atsushi Kobayashi, <nekokak at gmail.com>

BUGS

Top

Please report any bugs or feature requests to bug-sledge-plugin-paginate at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Sledge-Plugin-Paginate. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc Sledge::Plugin::Paginate

You can also look for information at:

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/Sledge-Plugin-Paginate

* CPAN Ratings

http://cpanratings.perl.org/d/Sledge-Plugin-Paginate

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Sledge-Plugin-Paginate

* Search CPAN

http://search.cpan.org/dist/Sledge-Plugin-Paginate

ACKNOWLEDGEMENTS

Top

COPYRIGHT & LICENSE

Top


Sledge-Plugin-Paginate documentation  | view source Contained in the Sledge-Plugin-Paginate distribution.