Skip to content

dead142/yii2-chat-adminlte

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yii2-chat-adminlte

yii2 chat widget widget admin lte

Fix bug yii2-chat-adminlte Trying to get property of non-object $model->user->username

delete avatar

add via composer :

"sintret/yii2-chat-adminlte": "dev-master"

You just add table chat to your database with this :

CREATE TABLE `chat` (
  `id` INT(11) NOT NULL AUTO_INCREMENT,
  `userId` INT(11) DEFAULT NULL,
  `message` TEXT,
  `updateDate` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=INNODB;

and calling the widget in the view :

    
\yii\helpers\Url::to(['/chat/send-chat']), 'userModel'=> \app\models\User::className(), 'userField' => 'avatarImage' ]); ?>

in your controller eg ChatController action sendChat

public function actionSendChat() {
    if (!empty($_POST)) {
        echo \sintret\chat\ChatRoom::sendChat($_POST);
    }
}

attribute additional for this widget:

url : your controller/action to post message using ajax

userModel : your user model class name

userField : your avatar image source in your User class, ex: avatarImage

About

yii2 chat widget widget admin lte

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 91.5%
  • JavaScript 8.5%