common/models/PostComment.php
<?php
/**
* @link http://www.writesdown.com/
* @copyright Copyright (c) 2015 WritesDown
* @license http://www.writesdown.com/license/
*/
namespace common\models;
use Yii;
use yii\helpers\ArrayHelper;
/**
* This is the model class for table "{{%post_comment}}".
*
* @property integer $post_id
*
* @property Post $commentPost
*
* @author Agiel K. Saputra <13nightevil@gmail.com>
* @since 0.1.0
*/
class PostComment extends BaseComment
{
/**
* @var string
*/
public $post_title;
/**
* @inheritdoc
*/
public static function tableName()
{
return '{{%post_comment}}';
}
/**
* @inheritdoc
*/
public function rules()
{
return ArrayHelper::merge(parent::rules(), [
['post_id', 'required'],
['post_id', 'integer'],
]);
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return ArrayHelper::merge(parent::attributeLabels(), [
'post_id' => Yii::t('writesdown', 'Comment to'),
'post_title' => Yii::t('writesdown', 'Post Title'),
]);
}
/**
* @return \yii\db\ActiveQuery
*/
public function getCommentPost()
{
return $this->hasOne(Post::className(), ['id' => 'post_id']);
}
}