MOON
Server: Apache/2.2.31 (Unix) mod_ssl/2.2.31 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
System: Linux csr818.wilogic.com 2.6.18-419.el5xen #1 SMP Fri Feb 24 22:50:37 UTC 2017 x86_64
User: digitals (531)
PHP: 5.4.45
Disabled: NONE
Upload Files
File: //var/usr/webmin-1.941/authentic-theme/settings.pl
#
# Authentic Theme (https://github.com/authentic-theme/authentic-theme)
# Copyright Ilia Rostovtsev <programming@rostovtsev.io>
# Licensed under MIT (https://github.com/authentic-theme/authentic-theme/blob/master/LICENSE)
#
use strict;

theme_settings('exclusions', undef, undef);
my @settings = theme_settings('get', undef, undef);
print theme_settings('header', undef, undef);
for (my $i = 0; $i < scalar(@settings) - 1; $i += 2) {
    if ($settings[$i] ne '__') {
        print theme_settings('content', $settings[$i], $settings[$i + 1]);
    } else {
        my @section = split(/\~/, $settings[$i + 1]);
        print theme_settings('section', $section[0], $section[1]);
    }
}
print theme_settings('footer', undef, undef);

1;