Adding the IHP Kit.

This commit is contained in:
JT Smith 2002-10-13 03:30:55 +00:00
parent fc8808c5c0
commit 55108689b4
11 changed files with 1047 additions and 0 deletions

27
sbin/Hourly/EmptyTrash.pm Normal file
View file

@ -0,0 +1,27 @@
package Hourly::EmptyTrash;
#-----------------------------------------
# Copyright 2002 Plain Black LLC
#-----------------------------------------
# Before using this software be sure you
# agree to the terms of its license, which
# can be found in docs/ihpkit.pdf of this
# distribution.
#-----------------------------------------
# http://www.plainblack.com
# info@plainblack.com
#-----------------------------------------
use strict;
use WebGUI::Operation::Trash;
use WebGUI::Session;
use WebGUI::SQL;
#-----------------------------------------
sub process {
WebGUI::Operation::Trash::www_purgeTrashConfirm();
}
1;