Comments.php 583 Bytes
<?php

namespace common\models;

use common\modules\comment\models\CommentModel;
use yii\base\Model;

/**
 * This is the model class for table "Comments".
 *
 */
class Comments extends Model
{
    public $id;

//    public function getComments()
//    {
//        return CommentModel::find()
//            ->where([
//                'entity_id' => 'id',
//                'artbox_comment.entity' => self::className(),
//                'artbox_comment.status' => CommentModel::STATUS_ACTIVE,
//                'artbox_comment.artbox_comment_pid' => NULL
//            ]);
//    }
}