1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/lib/TWiki/Configure/FINDEXTENSIONS.pm Sat Jan 26 15:50:53 2008 +0100
1.3 @@ -0,0 +1,36 @@
1.4 +#
1.5 +# TWiki Enterprise Collaboration Platform, http://TWiki.org/
1.6 +#
1.7 +# Copyright (C) 2000-2006 TWiki Contributors.
1.8 +#
1.9 +# This program is free software; you can redistribute it and/or
1.10 +# modify it under the terms of the GNU General Public License
1.11 +# as published by the Free Software Foundation; either version 2
1.12 +# of the License, or (at your option) any later version. For
1.13 +# more details read LICENSE in the root of this distribution.
1.14 +#
1.15 +# This program is distributed in the hope that it will be useful,
1.16 +# but WITHOUT ANY WARRANTY; without even the implied warranty of
1.17 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
1.18 +#
1.19 +# As per the GPL, removal of this notice is prohibited.
1.20 +#
1.21 +# Plug-in module for finding and handling plugins
1.22 +package TWiki::Configure::FINDEXTENSIONS;
1.23 +use base 'TWiki::Configure::Pluggable';
1.24 +
1.25 +use strict;
1.26 +
1.27 +use TWiki::Configure::Pluggable;
1.28 +use TWiki::Configure::Type;
1.29 +use TWiki::Configure::Value;
1.30 +
1.31 +sub new {
1.32 + my ($class) = @_;
1.33 +
1.34 + my $this = $class->SUPER::new('Find New Extensions');
1.35 +
1.36 + return $this;
1.37 +}
1.38 +
1.39 +1;