Kernel::Output::HTML::ImportExport::LayoutText

NAME

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

DESCRIPTION

All layout functions for text elements

new()

Create an object

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

FormInputCreate()

Create a input string

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

FormDataGet()

Get form data

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