CakePdf\Pdf\CakePdf::ownerPassword PHP 메소드

ownerPassword() 공개 메소드

The owner password is used to control who can modify, print, manage the PDF document.
public ownerPassword ( null | string $password = null ) : mixed
$password null | string password to set
리턴 mixed
    public function ownerPassword($password = null)
    {
        if ($password === null) {
            return $this->_ownerPassword;
        }
        $this->_ownerPassword = $password;
        return $this;
    }