Kernel::System::DataValidation::Validator::URL

NAME

Kernel::System::DataValidation::Validator::URL – Validator that verifies if the value is a valid URL.

PUBLIC INTERFACE

Provides a Check method, that will be called by the Kernel::System::DataValidation backend.

Check()

Checks if the given value is an valid URL.

    my $Result = $Validator->Check(
        Value => 'http://www.otrs.com',
    );
Scroll to Top