CommonITILObject::getUsers PHP 메소드

getUsers() 공개 메소드

get users linked to a object
public getUsers ( $type ) : array
$type type to search (see constants)
리턴 array
    function getUsers($type)
    {
        if (isset($this->users[$type])) {
            return $this->users[$type];
        }
        return array();
    }
CommonITILObject