Add Promote and Demote helpers.

This commit is contained in:
Colin Kuskie 2009-11-27 10:29:49 -08:00
parent 39ffaba487
commit 7d9ee7b0a6
5 changed files with 330 additions and 0 deletions

View file

@ -0,0 +1,62 @@
package WebGUI::AssetHelper::Demote;
use strict;
use Class::C3;
use base qw/WebGUI::AssetHelper/;
=head1 LEGAL
-------------------------------------------------------------------
WebGUI is Copyright 2001-2009 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
-------------------------------------------------------------------
=head1 NAME
Package WebGUI::AssetHelper::Demote
=head1 DESCRIPTION
Demotes the asset with respect to its siblings.
=head1 METHODS
These methods are available from this class:
=cut
#-------------------------------------------------------------------
=head2 process ( $class, $asset )
Demotes the asset. If the user cannot edit the asset it returns an error message.
=cut
sub process {
my ($class, $asset) = @_;
my $session = $asset->session;
my $i18n = WebGUI::International->new($session, 'WebGUI');
if (! $asset->canEdit) {
return { error => $i18n->get('38'), };
}
my $success = $asset->demote();
if (! $success) {
return {
error => sprintf($i18n->get('unable to demote assset', 'Asset'), $asset->getTitle),
};
}
return {
message => sprintf($i18n->get('demoted asset', 'Asset'), $asset->getTitle),
};
}
1;

View file

@ -0,0 +1,62 @@
package WebGUI::AssetHelper::Promote;
use strict;
use Class::C3;
use base qw/WebGUI::AssetHelper/;
=head1 LEGAL
-------------------------------------------------------------------
WebGUI is Copyright 2001-2009 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
-------------------------------------------------------------------
=head1 NAME
Package WebGUI::AssetHelper::Promote
=head1 DESCRIPTION
Promotes the asset with respect to its siblings.
=head1 METHODS
These methods are available from this class:
=cut
#-------------------------------------------------------------------
=head2 process ( $class, $asset )
Promotes the asset. If the user cannot edit the asset it returns an error message.
=cut
sub process {
my ($class, $asset) = @_;
my $session = $asset->session;
my $i18n = WebGUI::International->new($session, 'WebGUI');
if (! $asset->canEdit) {
return { error => $i18n->get('38'), };
}
my $success = $asset->promote();
if (! $success) {
return {
error => sprintf($i18n->get('unable to promote assset', 'Asset'), $asset->getTitle),
};
}
return {
message => sprintf($i18n->get('promoted asset', 'Asset'), $asset->getTitle),
};
}
1;

View file

@ -1394,6 +1394,30 @@ Couldn't open %-s because %-s <br />
context => q{%s will be replaced by the title of the asset.},
},
'promoted asset' => {
message => q{Asset %s was promoted.},
lastUpdated => 0,
context => q{%s will be replaced by the title of the asset.},
},
'unable to promote asset' => {
message => q{Unable to promote asset %s.},
lastUpdated => 0,
context => q{%s will be replaced by the title of the asset.},
},
'demoted asset' => {
message => q{Asset %s was demoted.},
lastUpdated => 0,
context => q{%s will be replaced by the title of the asset.},
},
'unable to demote asset' => {
message => q{Unable to demote asset %s.},
lastUpdated => 0,
context => q{%s will be replaced by the title of the asset.},
},
};
1;