ITSMChangeManagement -> rel-3_2 API documentation

NAME

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

SYNOPSIS

All layout functions of link object (workorder)

  • new()

    create an object

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

    return an array with the block data

    Return

    @BlockData = (
        Object    => 'ITSMWorkOrder',
        Blockname => 'WorkOrder',
        Headline  => [
            {
                Content => '',
                Width   => 20,
            },
            {
                Content => 'Workorder#',
                Width   => 200,
            },
            {
                Content => 'Workorder Title',
                Width   => 200,
            },
            {
                Content => 'Change Title',
                Width   => 200,
            },
            {
                Content => 'Workorder State',
                Width   => 100,
            },
            {
                Content => 'Changed',
                Width   => 150,
            },
        ],
        ItemList => [
            [
                {
                    Type           => 'WorkOrderStateSignal',
                    Key            => 2,
                    Content        => 'greenled',
                    WorkOrderState => 'ready',
                },
                {
                    Type    => 'Link',
                    Content => '2009100112345778-3',
                    Link    => 'Action=AgentITSMWorkOrderZoom;WorkOrderID=2',
                },
                {
                    Type      => 'Text',
                    Content   => 'Workorder Title',
                    MaxLength => 70,
                },
                {
                    Type      => 'Text',
                    Content   => 'Change Title',
                    MaxLength => 70,
                },
                {
                    Type    => 'Text',
                    Content => 'ready',
                },
                {
                    Type    => 'TimeLong',
                    Content => '2009-01-01 12:12:00',
                },
            ],
            [
                {
                    Type           => 'WorkOrderStateSignal',
                    Key            => 4,
                    Content        => 'redled',
                    WorkOrderState => 'canceld',
                },
                {
                    Type    => 'Link',
                    Content => '2009100112345778-4',
                    Link    => 'Action=AgentITSMWorkOrderZoom;WorkOrderID=4',
                },
                {
                    Type      => 'Text',
                    Content   => 'Workorder Title',
                    MaxLength => 70,
                },
                {
                    Type      => 'Text',
                    Content   => 'Change Title',
                    MaxLength => 70,
                },
                {
                    Type    => 'Text',
                    Content => 'accepted',
                },
                {
                    Type    => 'TimeLong',
                    Content => '2009-02-02 13:13:00',
                },
            ],
        ],
    );
    
    @BlockData = $LinkObject->TableCreateComplex(
        ObjectLinkListWithData => $ObjectLinkListRef,
    );
    
  • TableCreateSimple()

    return a hash with the link output data

    Return

    %LinkOutputData = (
        Normal::Source => {
            ITSMWorkOrder => [
                {
                    Type    => 'Link',
                    Content => 'WO:2009100112354321-1',
                    Title   => 'Change# 2009101610005402 - Workorder# 1: The WorkOrder Title',
                    Css     => 'style="text-decoration: line-through"',
                },
                {
                    Type    => 'Link',
                    Content => 'WO:2009100112354321-6',
                    Title   => 'Change# 2009101610007634 - Workorder# 6: The WorkOrder Title',
                },
            ],
        },
        ParentChild::Target => {
            ITSMWorkOrder => [
                {
                    Type    => 'Link',
                    Content => 'WO:2009100112354321-3',
                    Title   => 'Change# 20091016100044331 - Workorder# 3: The WorkOrder 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   => 'ITSMWorkOrder',
            Value => 'WorkOrder',
        },
    );
    
    @SelectableObjectList = $LinkObject->SelectableObjectList(
        Selected => $Identifier,  # (optional)
    );
    
  • SearchOptionList()

    return an array hash with search options

    Return

    @SearchOptionList = (
        {
            Key       => 'ChangeNumber',
            Name      => 'Change#',
            InputStrg => $FormString,
            FormData  => '2009100112354321',
        },
        {
            Key       => 'ChangeTitle',
            Name      => 'Change Title',
            InputStrg => $FormString,
            FormData  => 'Mail server needs update',
        },
        {
            Key       => 'WorkOrderNumber',
            Name      => 'Workorder#',
            InputStrg => $FormString,
            FormData  => '12',
        },
        {
            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 255:

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