Templated Inbox Notification.

Everything but the code to drive and use the template from
Account/Inbox.
This commit is contained in:
Colin Kuskie 2009-02-26 20:42:59 -08:00
parent 180b454ce7
commit ad71df4e3f
4 changed files with 69 additions and 1 deletions

View file

@ -303,6 +303,15 @@ sub definition {
hoverHelp => $i18n->get('send inbox notifications only help', 'Message_Center'),
defaultValue => $setting->get('sendInboxNotificationsOnly'),
});
push(@fields, {
tab => 'messaging',
fieldType => 'template',
name => 'inboxNotificationTemplateId',
label => $i18n->get('inbox notification template', 'Message_Center'),
hoverHelp => $i18n->get('inbox notification template help', 'Message_Center'),
defaultValue => $setting->get('inboxNotificationTemplateId'),
namespace => 'Account/Inbox/Notification',
});
# misc
push(@fields, {
tab=>"misc",

View file

@ -50,6 +50,11 @@ our $I18N = {
lastUpdated => 1235696295,
},
'inbox notification' => {
message => q|You have a new message in your Inbox.|,
lastUpdated => 1235708853,
},
};
1;

View file

@ -79,7 +79,8 @@ note => WebGUI::International::get('short notification','Message_Center'),
sub installSettings {
my $session = shift;
$session->setting->add('smsGateway', '');
$session->setting->add('sendInboxNotificationsOnly', '');
$session->setting->add('sendInboxNotificationsOnly', 0);
$session->setting->add('inboxNotificationTemplateId', 'b1316COmd9xRv4fCI3LLGA');
}
#----------------------------------------------------------------------------
@ -108,11 +109,64 @@ sub finish {
# my $versionTag = WebGUI::VersionTag->getWorking($session);
# $versionTag->commit;
##
updateTemplates($session);
my $versionTag = WebGUI::VersionTag->getWorking($session);
$versionTag->commit;
$session->var->end;
$session->close;
}
#-------------------------------------------------
sub updateTemplates {
my $session = shift;
my $packageDir = "message_center_packages";
return undef unless (-d $packageDir);
print "\tUpdating packages.\n";
opendir(DIR,$packageDir);
my @files = readdir(DIR);
closedir(DIR);
my $newFolder = undef;
foreach my $file (@files) {
next unless ($file =~ /\.wgpkg$/);
# Fix the filename to include a path
$file = $packageDir . "/" . $file;
addPackage( $session, $file );
}
}
sub addPackage {
my $session = shift;
my $file = shift;
# Make a storage location for the package
my $storage = WebGUI::Storage->createTemp( $session );
$storage->addFileFromFilesystem( $file );
# Import the package into the import node
my $package = WebGUI::Asset->getImportNode($session)->importPackage( $storage );
# Make the package not a package anymore
$package->update({ isPackage => 0 });
# Set the default flag for templates added
my $assetIds
= $package->getLineage( ['self','descendants'], {
includeOnlyClasses => [ 'WebGUI::Asset::Template' ],
} );
for my $assetId ( @{ $assetIds } ) {
my $asset = WebGUI::Asset->newByDynamicClass( $session, $assetId );
if ( !$asset ) {
print "Couldn't instantiate asset with ID '$assetId'. Please check package '$file' for corruption.\n";
next;
}
$asset->update( { isDefault => 1 } );
}
return;
}
__END__

Binary file not shown.