Blame view

common/modules/comment/interfaces/CommentInterface.php 374 Bytes
3f2bc3d0   Administrator   first commit
1
2
3
4
5
6
7
8
9
10
11
  <?php

      namespace common\modules\comment\interfaces;

  

      interface CommentInterface {

          public function load($data, $formName = null);

          public function formName();

          public function getComments($model, $model_id);

          public function postComment();

          public function deleteComment();

          public function updateComment();

      }