Blame view

common/modules/comment/rbac/ArtboxCommentUpdateRule.php 286 Bytes
e608c5f7   Yarik   Comment added
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  <?php
  
      namespace common\modules\comment\rbac;
  
      use yii\rbac\Rule;
  
      class ArtboxCommentUpdateRule extends Rule
      {
  
          public $name = 'canCommentUpdateArtbox';
  
          public function execute($user, $item, $params)
          {
              return false;
          }
  
3f2bc3d0   Administrator   first commit
17
      }