webgui/lib/WebGUI/Workflow/Activity/TrashClipboard.pm
Colin Kuskie c3052fcd67 1) Fixed a bad module name that prevented the updated WeatherData from running.
2) Heavy refactor of getAssetsInClipboard to make it use getLineage instead of
custom SQL.

Made Workflow/Activity/TrashClipboard use the same method.

Updated getLineage so that the whereClause key must not only exist, but actually
have something in it.  Otherwise it generates an empty pair of parens, which is
a SQL error.
2007-03-05 17:47:30 +00:00

92 lines
2 KiB
Perl

package WebGUI::Workflow::Activity::TrashClipboard;
=head1 LEGAL
-------------------------------------------------------------------
WebGUI is Copyright 2001-2006 Plain Black Corporation.
-------------------------------------------------------------------
Please read the legal notices (docs/legal.txt) and the license
(docs/license.txt) that came with this distribution before using
this software.
-------------------------------------------------------------------
http://www.plainblack.com info@plainblack.com
-------------------------------------------------------------------
=cut
use strict;
use base 'WebGUI::Workflow::Activity';
use WebGUI::Asset;
use WebGUI::AssetClipboard;
=head1 NAME
Package WebGUI::Workflow::Activity::TrashClipboard;
=head1 DESCRIPTION
Deletes
=head1 SYNOPSIS
See WebGUI::Workflow::Activity for details on how to use any activity.
=head1 METHODS
These methods are available from this class:
=cut
#-------------------------------------------------------------------
=head2 definition ( session, definition )
See WebGUI::Workflow::Activity::definition() for details.
=cut
sub definition {
my $class = shift;
my $session = shift;
my $definition = shift;
my $i18n = WebGUI::International->new($session, "Workflow_Activity_TrashClipboard");
push(@{$definition}, {
name=>$i18n->get("activityName"),
properties=> {
trashAfter => {
fieldType=>"interval",
label=>$i18n->get("trash after"),
defaultValue=>60 * 60 * 24 * 30,
hoverHelp=>$i18n->get("trash after help")
}
}
});
return $class->SUPER::definition($session,$definition);
}
#-------------------------------------------------------------------
=head2 execute ( )
See WebGUI::Workflow::Activity::execute() for details.
=cut
sub execute {
my $self = shift;
my $expireDate = (time()-$self->get("trashAfter"));
my $root = WebGUI::Asset->getRoot($self->session);
foreach my $asset ( @{ $root->getAssetsInClipboard('', '', $expireDate) } ) {
$asset->trash;
}
return $self->COMPLETE;
}
1;