%PDF- %PDF-
Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/post/widgets/ |
Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/post/widgets/WallEntry.php |
<?php /** * @link https://www.humhub.org/ * @copyright Copyright (c) 2018 HumHub GmbH & Co. KG * @license https://www.humhub.com/licences */ namespace humhub\modules\post\widgets; use humhub\modules\content\widgets\stream\WallStreamEntryWidget; /** * @inheritdoc */ class WallEntry extends WallStreamEntryWidget { /** * Route to create a content * * @var string */ public $createRoute = '/post/post/create-form'; /** * @inheritdoc */ public $editRoute = '/post/post/edit'; /** * @inheritdoc */ public $createFormSortOrder = 100; /** * @inheritdoc */ public $createFormClass = Form::class; /** * @inheritdoc */ protected function renderContent() { return $this->render('wallEntry', [ 'post' => $this->model, 'justEdited' => $this->renderOptions->isJustEdited(), // compatibility for themed legacy views 'renderOptions' => $this->renderOptions ]); } }