Ejemplo n.º 1
0
 /**
  * @return NotifyUser
  */
 public static function loadDefault($commentableType = null)
 {
     if ($nu = NotifyUser::model()->findByAttributes(array('user_id' => Yii::app()->user->id, 'commentable_type' => $commentableType))) {
         return $nu;
     }
     $nu = new self();
     $nu->user_id = Yii::app()->user->id;
     $nu->commentable_type = $commentableType;
     return $nu;
 }