Kernel::System::Web::InterfaceAgent

NAME

Kernel::System::Web::InterfaceAgent – the agent web interface

DESCRIPTION

the global agent web interface (authentication, session handling, …)

PUBLIC INTERFACE

new()

create agent web interface object. Do not use it directly, instead use:

    use Kernel::System::ObjectManager;
    my $Debug = 0,
    local $Kernel::OM = Kernel::System::ObjectManager->new(
        'Kernel::System::Web::InterfaceAgent' => {
            Debug      => 0,
            Controller => $Controller,  # Mojolicious controller object
        }
    );
    my $InterfaceAgent = $Kernel::OM->Get('Kernel::System::Web::InterfaceAgent');

Run()

execute the object

    $InterfaceAgent->Run();
Scroll to Top