Viewing File: /usr/local/cpanel/3rdparty/wp-toolkit/feature-showcase/WpToolkitPluginUI.pm

package Cpanel::Config::ConfigObj::Driver::WpToolkitPluginUI;

# cpanel - Cpanel/Config/ConfigObj/Driver/WpToolkitPluginUI.pm
# Copyright 1999-2025. WebPros International GmbH. All rights reserved.

use cPstrict;

=encoding utf-8

=head1 NAME

Cpanel::Config::ConfigObj::Driver::WpToolkitPluginUI

=head1 DESCRIPTION

Feature Showcase driver for WpToolkitPluginUI

=cut

use parent qw(Cpanel::Config::ConfigObj::Interface::Config::v1);

use Cpanel::Config::ConfigObj::Driver::WpToolkitPluginUI::META ();
use Cpanel::Imports;

*VERSION = \$Cpanel::Config::ConfigObj::Driver::WpToolkitPluginUI::META::VERSION;

=head1 METHODS

=head2 init

Initializes the feature showcase object.

=cut

sub init ( $class, $software_obj ) {

    my $defaults = {
        'settings'      => {},
        'thirdparty_ns' => "",
    };

    my $self = $class->SUPER::base( $defaults, $software_obj );

    return $self;
}

1;
Back to Directory File Manager