mirror of
https://github.com/waytotheweb/scripts.git
synced 2026-03-29 22:17:06 +00:00
GPL v3 Release
This commit is contained in:
46
csf/cpanel/Driver/ConfigServercsf/META.pm
Normal file
46
csf/cpanel/Driver/ConfigServercsf/META.pm
Normal file
@@ -0,0 +1,46 @@
|
||||
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' => 'Jonathan Michaelson',
|
||||
'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;
|
||||
Reference in New Issue
Block a user