/**
  * Creates a new note via NoteFormWidget/ContentFormWidget
  */
 public function actionCreate()
 {
     $note = new Note();
     $note->title = Yii::$app->request->post('title');
     return \humhub\modules\notes\widgets\WallCreateForm::create($note);
 }