%PDF- %PDF-
| Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/user/widgets/ |
| Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/user/widgets/StreamViewer.php |
<?php
/**
* @link https://www.humhub.org/
* @copyright Copyright (c) 2017 HumHub GmbH & Co. KG
* @license https://www.humhub.com/licences
*/
namespace humhub\modules\user\widgets;
use humhub\modules\post\models\Post;
use Yii;
use humhub\modules\stream\widgets\StreamViewer as BaseStreamViewer;
use humhub\modules\user\models\User;
use humhub\modules\post\permissions\CreatePost;
/**
* StreamViewer shows a users profile stream
*
* @since 1.2.4
* @author Luke
*/
class StreamViewer extends BaseStreamViewer
{
/**
* @var string the path to Stream Action to use
*/
public $streamAction = '/user/profile/stream';
/**
* @inheritdoc
*/
public $streamFilterNavigation = ProfileStreamFilterNavigation::class;
/**
* @var User
*/
public $contentContainer;
/**
* @inheritdoc
*/
public function init()
{
parent::init();
$canCreatePost = (new Post($this->contentContainer))->content->canEdit();
if (empty($this->messageStreamEmptyCss) && $canCreatePost) {
$this->messageStreamEmptyCss = 'placeholder-empty-stream';
}
if ($canCreatePost) {
$this->messageStreamEmpty = $this->contentContainer->is(Yii::$app->user->getIdentity())
? Yii::t('UserModule.profile', '<b>Your profile stream is still empty</b><br>Get started and post something...')
: Yii::t('UserModule.profile', '<b>This profile stream is still empty</b><br>Be the first and post something...');
} else {
$this->messageStreamEmpty = Yii::t('UserModule.profile', '<b>This profile stream is still empty!</b>');
}
}
}