package MojoMojo::Formatter::Comment; use base qw/MojoMojo::Formatter/; =head1 NAME MojoMojo::Formatter::Comment - Include comments on your page. =head1 DESCRIPTION This is a hook for the page comment functionality. It allows a comment box to be placed anywhere on your page through the =comments tag. =head1 METHODS =over 4 =item format_content_order Format order can be 1-99. The Comment formatter runs on 91 =cut sub format_content_order { 91 } =item format_content calls the formatter. Takes a ref to the content as well as the context object. =cut sub format_content { my ($class,$content,$c,$self) = @_; eval { $$content =~ s{\\=comments\s*\<\/p\>} {show_comments($c,$c->stash->{page})}me; }; } =item show_comments Redispatches a subrequest to L. =cut sub show_comments { my ( $c, $page ) = @_; $c->forward('/comment/default'); return '
'. $c->view('TT')->render($c,'comment.tt').'
'; ; } =back =head1 SEE ALSO L,L =head1 AUTHORS Marcus Ramberg =head1 LICENSE This module is licensed under the same terms as Perl itself. =cut 1;