=head1 NAME Pangloss::Segment::Decline::NotProofreader - decline unless there's a user with translation capabilities in the session =head1 SYNOPSIS $pipe->add_segment( Pangloss::Segment::NotProofreader->new ) =cut package Pangloss::Segment::Decline::NotProofreader; use base qw( OpenFrame::WebApp::Segment::Decline OpenFrame::WebApp::Segment::User::Session ); our $VERSION = ((require Pangloss::Version), $Pangloss::VERSION)[1]; our $REVISION = (split(/ /, ' $Revision: 1.3 $ '))[2]; sub should_decline { my $self = shift; my $user = $self->get_user_from_session || return 1; return $user->not_proofreader; } 1; __END__ #------------------------------------------------------------------------------ =head1 DESCRIPTION This class inherits its interface from C and C. =head1 AUTHOR Steve Purkis =head1 SEE ALSO L =cut