migrated expire subscription codes to workflow

This commit is contained in:
JT Smith 2006-03-02 21:26:28 +00:00
parent 11a2c5d099
commit 2139b9e5d4
4 changed files with 90 additions and 13 deletions

View file

@ -0,0 +1,80 @@
package WebGUI::Workflow::Activity::ExpireSubscriptionCodes;
=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 File::Path;
use File::stat;
=head1 NAME
Package WebGUI::Workflow::Activity::ExpireSubscriptionCodes
=head1 DESCRIPTION
Set old subscription codes expired.
=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::defintion() for details.
=cut
sub definition {
my $class = shift;
my $session = shift;
my $definition = shift;
my $i18n = WebGUI::International->new($session, "Subscription");
push(@{$definition}, {
name=>$i18n->get("expire subscription codes"),
properties=> { }
});
return $class->SUPER::definition($session,$definition);
}
#-------------------------------------------------------------------
=head2 execute ( )
See WebGUI::Workflow::Activity::execute() for details.
=cut
sub execute {
my $self = shift;
$self->session->db->write("update subscriptionCode set status='Expired' where status = 'Unused' and dateCreated + expires < ?", [time()]);
}
1;

View file

@ -1,6 +1,12 @@
package WebGUI::i18n::English::Subscription;
our $I18N = {
'expire subscription codes' => {
message => q|Expire Subscription Codes|,
lastUpdated => 0,
context => q|the title of the expire subscription codes workflow activity|
},
'no subscription code batches' => {
message => q|No subscription code batches have been created yet. Use the submenu on the right to generate a batch.|,
lastUpdated => 1101228391,