本文整理匯總了PHP中util::acl方法的典型用法代碼示例。如果您正苦於以下問題:PHP util::acl方法的具體用法?PHP util::acl怎麽用?PHP util::acl使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類util
的用法示例。
在下文中一共展示了util::acl方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: __construct
public function __construct(View $t)
{
error_log(__METHOD__);
util::acl($this->acl);
$this->t = $t;
$this->g = $t->g;
$this->o = $t->g->in['o'];
$this->in = util::esc($this->in);
db::$tbl = $this->o;
$this->b = $this->{$t->g->in['m']}();
// $this->b .= $this->{$t->g->in['m']}();
}
示例2: declare
<?php
declare (strict_types=1);
error_log(__FILE__);
// w/notes/form.php 20151030 (C) 2015-2016 Mark Constable <markc@renta.net> (AGPL-3.0)
util::acl(1);
return '
<form action="" method="POST">
<p>
<label for="title">Title</label>
<input type="text" name="title" id="title" value="' . $title . '">
</p>
<p>
<label for="author">Author</label>
<input type="text" name="author" id="author" value="' . $author . '">
</p>
<p>
<label for="content">Content</label>
<textarea rows="7" name="content" id="content">' . $content . '</textarea>
</p>
<p style="text-align:right">' . $this->button($submit, 'submit', 'primary') . '
</p>
<input type="hidden" name="o" value="' . $this->g->in['o'] . '">
<input type="hidden" name="m" value="' . $this->g->in['m'] . '">
<input type="hidden" name="i" value="' . $this->g->in['i'] . '">
</form>';
示例3: delete
public function delete()
{
error_log(__METHOD__);
util::acl(1);
parent::delete();
}