本文整理汇总了PHP中Acl::owns方法的典型用法代码示例。如果您正苦于以下问题:PHP Acl::owns方法的具体用法?PHP Acl::owns怎么用?PHP Acl::owns使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Acl
的用法示例。
在下文中一共展示了Acl::owns方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: in
public function in($what, $key)
{
if ($this->_allowed !== null) return;
if ($what == 'allow')
{
$this->_onlyDenied = false;
if ($key[0] == ':') // Pseudo key
{
if ($key == ':loggedIn')
{
if (UserSession::get() != null)
{
$this->_allowed = true;
}
}
}
else
{
if ($u = UserSession::get())
{
if (Acl::isAllowed(UserSession::get()->username, $key))
{
$this->_allowed = true;
}
}
}
}
else if ($what == 'deny')
{
if ($key[0] == ':') // Pseudo key
{
if ($key == ':anonymous')
{
if (UserSession::get() == null)
{
$this->_allowed = false;
}
}
}
else
{
if (Acl::isAllowed(UserSession::get()->username, $key))
{
$this->_allowed = false;
}
}
}
else if ($what == 'owns')
{
if ($this->_allowed !== null) return;
$this->_onlyDenied = false;
if (UserSession::get())
{
$this->_allowed = Acl::owns(UserSession::get()->username, $key) ? true : $this->_allowed;
}
}
}
示例2: testOwns
public function testOwns()
{
$o = new MyMoreSpecificModel;
$o->username = 'me';
$this->assertTrue(Acl::owns('me', $o));
$this->assertFalse(Acl::owns('not-me', $o));
$this->assertFalse(Acl::owns('not-me', new UserSession('a', 'a'))); // Class is not registered
}