=head1 NAME Pangloss::Segment::Decline::CantTranslateTerm - decline unless there's a user that can add concpets in the session =head1 SYNOPSIS $pipe->add_segment( Pangloss::Segment::CantTranslateTerm->new ) =cut package Pangloss::Segment::Decline::CantTranslateTerm; 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; my $term = $self->store->get('Pangloss::Term') || return 1; return $user->cant_translate( $term->language ); } 1; __END__ #------------------------------------------------------------------------------ =head1 DESCRIPTION This class inherits its interface from C and C. =head1 AUTHOR Steve Purkis =head1 SEE ALSO L =cut