ITSMChangeManagement -> rel-3_2 API documentation

NAME

Kernel::Output::HTML::LinkObjectITSMChange - layout backend module

SYNOPSIS

All layout functions of link object (change)

  • new()

    create an object

    $BackendObject = Kernel::Output::HTML::LinkObjectITSMChange->new(
        %Param,
    );
    
  • TableCreateComplex()

    return an array with the block data

    Return

    @BlockData = (
        Object    => 'ITSMChange',
        Blockname => 'Change',
        Headline  => [
            {
                Content => '',
                Width   => 20,
            },
            {
                Content => 'Change#',
                Width   => 200,
            },
            {
                Content => 'Change Title',
                Width   => 200,
            },
            {
                Content => 'Change State',
                Width   => 100,
            },
            {
                Content => 'Changed',
                Width   => 150,
            },
        ],
        ItemList => [
            [
                {
                    Type        => 'ChangeStateSignal',
                    Key         => 123,
                    Content     => 'grayled',
                    ChangeState => 'requested',
                },
                {
                    Type    => 'Link',
                    Content => '2009100112345778',
                    Link    => 'Action=AgentITSMChangeZoom;ChangeID=123',
                },
                {
                    Type      => 'Text',
                    Content   => 'Change Title',
                    MaxLength => 70,
                },
                {
                    Type      => 'Text',
                    Content   => 'requested',
                },
                {
                    Type    => 'TimeLong',
                    Content => '2008-01-01 12:12:00',
                },
            ],
            [
                {
                    Type        => 'ChangeStateSignal',
                    Key         => 456,
                    Content     => 'greenled',
                    ChangeState => 'closed',
                },
                {
                    Type    => 'Link',
                    Content => '2009100112345774',
                    Link    => 'Action=AgentITSMChangeZoom;ChangeID=456',
                },
                {
                    Type      => 'Text',
                    Content   => 'Change Title',
                    MaxLength => 70,
                },
                {
                    Type      => 'Text',
                    Content   => 'closed',
                },
                {
                    Type    => 'TimeLong',
                    Content => '2008-01-01 12:12:00',
                },
            ],
        ],
    );
    
    @BlockData = $LinkObject->TableCreateComplex(
        ObjectLinkListWithData => $ObjectLinkListRef,
    );
    
  • TableCreateSimple()

    return a hash with the link output data

    Return

    %LinkOutputData = (
        Normal::Source => {
            ITSMChange => [
                {
                    Type    => 'Link',
                    Content => 'CH:2009100112354321-1',
                    Title   => 'Change# 2009101610005402: The Change Title',
                    Css     => 'style="text-decoration: line-through"',
                },
                {
                    Type    => 'Link',
                    Content => 'CH:2009100112354321-6',
                    Title   => 'Change# 2009101610007634: The Change Title',
                },
            ],
        },
        ParentChild::Target => {
            ITSMChange => [
                {
                    Type    => 'Link',
                    Content => 'CH:2009100112354321-3',
                    Title   => 'Change# 20091016100044331: The Change Title',
                },
            ],
        },
    );
    
    %LinkOutputData = $LinkObject->TableCreateSimple(
        ObjectLinkListWithData => $ObjectLinkListRef,
    );
    
  • ContentStringCreate()

    return a output string

    my $String = $LayoutObject->ContentStringCreate(
        ContentData => $HashRef,
    );
    
  • SelectableObjectList()

    return an array hash with selectable objects

    Return

    @SelectableObjectList = (
        {
            Key   => 'ITSMChange',
            Value => 'Change',
        },
    );
    
    @SelectableObjectList = $LinkObject->SelectableObjectList(
        Selected => $Identifier,  # (optional)
    );
    
  • SearchOptionList()

    return an array hash with search options

    Return

    @SearchOptionList = (
        {
            Key       => 'ChangeNumber',
            Name      => 'Change#',
            InputStrg => $FormString,
            FormData  => '12',
        },
        {
            Key       => 'ChangeTitle',
            Name      => 'Change Title',
            InputStrg => $FormString,
            FormData  => 'MailServer needs update',
        },
        {
            Key       => 'WorkOrderTitle',
            Name      => 'Workorder Title',
            InputStrg => $FormString,
            FormData  => 'Shutdown old mail server',
        },
    );
    
    @SearchOptionList = $LinkObject->SearchOptionList();
    

TERMS AND CONDITIONS

This software is part of the OTRS project (http://otrs.org/).

This software comes with ABSOLUTELY NO WARRANTY. For details, see the enclosed file COPYING for license information (AGPL). If you did not receive this file, see http://www.gnu.org/licenses/agpl.txt.

POD ERRORS

Hey! The above document had some coding errors, which are explained below:

  • Around line 235:

    =cut found outside a pod block. Skipping to next block.