Query: jifty::plugin::comment::notification::commentpublished
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
Jifty::Plugin::Comment::Notification::CommentPublished(3User Contributed Perl DocumentaJifty::Plugin::Comment::Notification::CommentPublished(3pm)NAMEJifty::Plugin::Comment::Notification::CommentPublished - new comments madeSYNOPSISTo activate this notification, you must override the notification in your application. use strict; use warnings; package MyApp::Notification::CommentPublished; use base qw/ Jifty::Plugin::Comment::Notification::CommentPublished /; sub setup { my $self = shift; # Send to the author of the post $self->to_list($self->parent->author); $self->SUPER::setup(@_); } sub url { my $self = shift; return Jifty->config->framework('Web')->{'BaseURL'} . $self->parent->permalink . '#comment-'.$self->comment->id; } 1;DESCRIPTIONThis notification (when properly configured) is sent out to any who need to know when a comment has been published.METHODSsetup This method sets up the notification. This method should be overridden to setup "to_list" in Jifty::Notification to select who will receive this message. See the "SYNOPSIS". comment This will contain the Jifty::Plugin::Comment::Model::Comment that has been published. parent This will contain the object that the comment has been attached to. url This returns the URL that the message will link to. This should be overridden to provide application-specific URLs. The default implementation returns the BaseURL setting for the application.SEE ALSOJifty::Notification, Jifty::Plugin::Comment::Notification::CommentNeedsModerationAUTHORAndrew Sterling Hanenkamp, "<hanenkamp@cpan.org>"COPYRIGHT AND LICENSECopyright 2008 Boomer Consulting, Inc. All Rights Reserved. This program is free software and may be modified and distributed under the same terms as Perl itself. perl v5.12.4 2009-03-09 Jifty::Plugin::Comment::Notification::CommentPublished(3pm)