當前位置: 首頁>>代碼示例>>PHP>>正文


PHP util::acl方法代碼示例

本文整理匯總了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']}();
 }
開發者ID:netserva,項目名稱:www,代碼行數:12,代碼來源:crud.php

示例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>';
開發者ID:netserva,項目名稱:www,代碼行數:26,代碼來源:form.php

示例3: delete

 public function delete()
 {
     error_log(__METHOD__);
     util::acl(1);
     parent::delete();
 }
開發者ID:netserva,項目名稱:www,代碼行數:6,代碼來源:news.php


注:本文中的util::acl方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。