Kernel::Output::HTML::ImportExport::LayoutSelection

NAME

Kernel::Output::HTML::ImportExport::LayoutSelection – layout backend module

DESCRIPTION

All layout functions for selection elements

new()

Create an object

    $BackendObject = Kernel::Output::HTML::ImportExport::LayoutSelection->new(
        %Param,
    );

FormInputCreate()

Create a input string

    my $Value = $BackendObject->FormInputCreate(
        Item   => $ItemRef,
        Prefix => 'Prefix::',  # (optional)
        Value  => 'Value',     # (optional)
        Class  => 'Modernize'  # (optional)
    );

FormDataGet()

Get form data

    my $FormData = $BackendObject->FormDataGet(
        Item   => $ItemRef,
        Prefix => 'Prefix::',  # (optional)
    );
Scroll to Top