Kernel::System::DataValidation::Validator::KnowledgeBase::LanguageID

NAME

Kernel::System::DataValidation::Validator::KnowledgeBase::LanguageID – Validator that verifies a given LanguageID.

PUBLIC INTERFACE

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

Example()

Returns an example of a possible value to be verified.

Check()

Lookup the given LanguageID in the database. For more information about the faq backend, please refer to Kernel::System::FAQ.

    my $True = $Validator->Check(
        Value => 1,
    );

    my $False = $Validator->Check(
        Value => 'WrongLanguageID',
    );
Scroll to Top