diff options
author | Angelo Naselli <anaselli@linux.it> | 2015-03-16 18:16:50 +0100 |
---|---|---|
committer | Angelo Naselli <anaselli@linux.it> | 2015-03-16 18:16:50 +0100 |
commit | fc9772f1f03684e8dab50ff77d2c46c5e0309c7b (patch) | |
tree | 375b76cf80e5d816eb48a4badf3bb949199ef220 /lib/AdminPanel/SettingsReader.pm | |
parent | 825922057a21a9b09c60edf4b44535d7fd49926d (diff) | |
download | colin-keep-fc9772f1f03684e8dab50ff77d2c46c5e0309c7b.tar colin-keep-fc9772f1f03684e8dab50ff77d2c46c5e0309c7b.tar.gz colin-keep-fc9772f1f03684e8dab50ff77d2c46c5e0309c7b.tar.bz2 colin-keep-fc9772f1f03684e8dab50ff77d2c46c5e0309c7b.tar.xz colin-keep-fc9772f1f03684e8dab50ff77d2c46c5e0309c7b.zip |
Moved to namespace to ManaTools
Diffstat (limited to 'lib/AdminPanel/SettingsReader.pm')
-rw-r--r-- | lib/AdminPanel/SettingsReader.pm | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/AdminPanel/SettingsReader.pm b/lib/AdminPanel/SettingsReader.pm index bb6203e..318aefd 100644 --- a/lib/AdminPanel/SettingsReader.pm +++ b/lib/AdminPanel/SettingsReader.pm @@ -1,16 +1,16 @@ # vim: set et ts=4 sw=4: -package AdminPanel::SettingsReader; +package ManaTools::SettingsReader; #============================================================= -*-perl-*- =head1 NAME -AdminPanel::SettingsReader - This module allows to load an XML configuration file +ManaTools::SettingsReader - This module allows to load an XML configuration file =head1 SYNOPSIS - use AdminPanel::SettingsReader; + use ManaTools::SettingsReader; - my $settings = new AdminPanel::SettingsReader($fileName); + my $settings = new ManaTools::SettingsReader($fileName); =head1 DESCRIPTION @@ -20,7 +20,7 @@ AdminPanel::SettingsReader - This module allows to load an XML configuration fil You can find documentation for this module with the perldoc command: -perldoc AdminPanel::SettingsReader +perldoc ManaTools::SettingsReader =head1 SEE ALSO @@ -34,20 +34,20 @@ perldoc AdminPanel::SettingsReader Copyright (C) 2012-2015, Angelo Naselli. - This file is part of AdminPanel + This file is part of ManaTools - AdminPanel is free software: you can redistribute it and/or modify + ManaTools is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. - AdminPanel is distributed in the hope that it will be useful, + ManaTools is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with AdminPanel. If not, see <http://www.gnu.org/licenses/>. + along with ManaTools. If not, see <http://www.gnu.org/licenses/>. =head1 FUNCTIONS @@ -74,7 +74,7 @@ use Data::Dumper; =head3 DESCRIPTION - The constructor just loads the given files and return its representation + The constructor just loads the given files and return its representation into a hash reference. =cut @@ -87,7 +87,7 @@ sub new { my $self = { settings => 0, }; - bless $self, 'AdminPanel::SettingsReader'; + bless $self, 'ManaTools::SettingsReader'; die "File " . $fileName . " not found" if (! -e $fileName); |