MOON
Server: Apache
System: Linux mail.espica.me 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64
User: golnoor (1011)
PHP: 8.2.31
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //usr/src/csf/cpanel/Driver/ConfigServercsf/META.pm
package Cpanel::Config::ConfigObj::Driver::ConfigServercsf::META;

use strict;

our $VERSION = 1.1;

#use parent qw(Cpanel::Config::ConfigObj::Interface::Config::Version::v1);
sub spec_version {
	return 1;
}

sub meta_version {
    return 1;
}

sub get_driver_name {
    return 'ConfigServercsf_driver';
}

sub content {
    my ($locale_handle) = @_;

    my $content = {
        'vendor' => 'Way to the Web Limited',
        'url'    => 'www.configserver.com',
        'name'   => {
            'short'  => 'ConfigServercsf Driver',
            'long'   => 'ConfigServercsf Driver',
            'driver' => get_driver_name(),
        },
        'since'    => 'cPanel 11.38.1',
        'abstract' => "A ConfigServercsf driver",
        'version'  => $VERSION,
    };

    if ($locale_handle) {
        $content->{'abstract'} = $locale_handle->maketext("ConfigServer csf driver");
    }

    return $content;
}

sub showcase {
    return;
}
1;