NAME
OpenInteract2::Manage::Website::ThemeInstall - Install a theme from a themeball
SYNOPSIS
#!/usr/bin/perl
use strict;
use OpenInteract2::Manage;
my $website_dir = '/home/httpd/mysite';
my $task = OpenInteract2::Manage->new(
'install_theme', { website_dir => $website_dir,
theme_file => 'my_themeball' } );
my $status = $task->execute;
print "Installed? $status->{is_ok}\n",
"$status->{message}\n";
}
DESCRIPTION
This task installs a theme from a "themeball", dumped using the 'dump_theme' task.
REQUIRED OPTIONS
In addition to 'website_dir' you must define:
STATUS MESSAGES
No additional entries in the status messages.
COPYRIGHT
Copyright (c) 2002-2004 Chris Winters. All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
AUTHORS
Chris Winters <chris@cwinters.com>