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;
    }