Pangloss::Segment::RemoveCategory - remove category.


Pangloss documentation Contained in the Pangloss distribution.

Index


Code Index:

NAME

Top

Pangloss::Segment::RemoveCategory - remove category.

SYNOPSIS

Top

  $pipe->add_segment( Pangloss::Segment::RemoveCategory->new )

DESCRIPTION

Top

This class inherits its interface from Pipeline::Segment.

On dispatch(), if the request has an 'remove_category' argument, attempts to remove the category specified by 'selected_category' and return the resulting view or error.

AUTHOR

Top

Steve Purkis <spurkis@quiup.com>

SEE ALSO

Top

Pangloss::Application::CategoryEditor


Pangloss documentation Contained in the Pangloss distribution.
package Pangloss::Segment::RemoveCategory;

use Pangloss::Category;

use base qw( Pipeline::Segment );

our $VERSION  = ((require Pangloss::Version), $Pangloss::VERSION)[1];
our $REVISION = (split(/ /, ' $Revision: 1.6 $ '))[2];

sub dispatch {
    my $self    = shift;
    my $request = $self->store->get('OpenFrame::Request') || return;
    my $app     = $self->store->get('Pangloss::Application') || return;
    my $view    = $self->store->get('Pangloss::Application::View');
    my $args    = $request->arguments;
    my %details = ();

    if ($args->{remove_category}) {
	my $name = $args->{selected_category};

	$self->emit( "removing category $name" );

	return $app->category_editor->remove( $name, $view );
    }
}

1;

__END__

#------------------------------------------------------------------------------