CommonITILObject::getDefaultActorRightSearch PHP Метод

getDefaultActorRightSearch() публичный Метод

Get Default actor when creating the object
public getDefaultActorRightSearch ( $type ) : boolean
$type type to search (see constants)
Результат boolean
    function getDefaultActorRightSearch($type)
    {
        if ($type == CommonITILActor::ASSIGN) {
            return "own_ticket";
        }
        return "all";
    }
CommonITILObject