1# TWiki Enterprise Collaboration Platform, http://TWiki.org/
2#
3# Copyright (C) 2000-2018 Peter Thoeny, peter[at]thoeny.org
4# and TWiki Contributors. All Rights Reserved. TWiki Contributors
5# are listed in the AUTHORS file in the root of this distribution.
6# NOTE: Please extend that file, not this notice.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License
10# as published by the Free Software Foundation; either version 3
11# of the License, or (at your option) any later version. For
12# more details read LICENSE in the root of this distribution.
13#
14# This program is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17#
18# As per the GPL, removal of this notice is prohibited.
19#
20# Plug-in module for finding and handling plugins
21package TWiki::Configure::FINDEXTENSIONS;
22use base 'TWiki::Configure::Pluggable';
23
24use strict;
25
26use TWiki::Configure::Pluggable;
27use TWiki::Configure::Type;
28use TWiki::Configure::Value;
29
30sub new {
31    my ($class) = @_;
32
33    my $this = $class->SUPER::new('Find New Extensions');
34
35    return $this;
36}
37
381;
39