Kernel::Output::HTML::Layout::ImportExport

NAME

Kernel::Output::HTML::Layout::ImportExport

ImportExportFormInputCreate()

Returns a input field html string

    my $String = $LayoutObject->ImportExportFormInputCreate(
        Item  => $ItemRef,
        Value => 'Value',   # (optional)
    );

ImportExportFormDataGet()

Returns the values from the html form as hash reference

    my $FormData = $LayoutObject->ImportExportFormDataGet(
        Item => $ItemRef,
    );

_ImportExportLoadLayoutBackend()

To load a import/export layout backend module

    my $Backend = $LayoutObject->_ImportExportLoadLayoutBackend(
        Type => 'Selection',
    );

An instance of the loaded backend module is returned.

Scroll to Top