%PDF- %PDF-
Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/stream/ |
Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/stream/Module.php |
<?php /** * @link https://www.humhub.org/ * @copyright Copyright (c) 2017 HumHub GmbH & Co. KG * @license https://www.humhub.com/licences */ namespace humhub\modules\stream; /** * Stream Module provides stream (wall) backend and frontend * * @author Luke * @since 1.2 */ class Module extends \humhub\components\Module { /** * @var array content classes to excludes from streams */ public $streamExcludes = []; /** * @var array content classes which are not suppressed when in a row */ public $streamSuppressQueryIgnore = []; /** * @var array default content classes which are not suppressed when in a row */ public $defaultStreamSuppressQueryIgnore = [\humhub\modules\post\models\Post::class, \humhub\modules\activity\models\Activity::class]; /** * @var int number of contents from which "Show more" appears in the stream */ public $streamSuppressLimit = 2; /** * @var boolean show contents of deactivated users in stream */ public $showDeactivatedUserContent = true; }