Moxy::Plugin::Bookmark - Moxy::Plugin::Bookmark documentation


Moxy documentation Contained in the Moxy distribution.

Index


Code Index:

NAME

Top

Moxy::Plugin::Bookmark

SYNOPSIS

Top

  - module: Bookmark

DESCRIPTION

Top

View of Bookmark.

AUTHOR

Top

Akiko Yokoyama

Tokuhiro Matsuno


Moxy documentation Contained in the Moxy distribution.

package Moxy::Plugin::Bookmark;
use strict;
use warnings;
use base qw/Moxy::Plugin/;

sub control_panel :Hook {
    my ($self, $context, $args) = @_;

    my $bookmark = $self->config->{config}->{bookmark};

    return $self->render_template(
        $context,
        'panel.tt' => {
            bookmark => $bookmark, 
        }
    );
}

1;
__END__