/**
  * Returns the number of new messages as JSON
  */
 public function actionGetNewMessageCountJson()
 {
     Yii::$app->response->format = 'json';
     $json = array();
     $json['newMessages'] = ServicesUserMessage::getNewMessageCount();
     return $json;
 }