for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @link https://www.humhub.org/
* @copyright Copyright (c) 2015 HumHub GmbH & Co. KG
* @license https://www.humhub.com/licences
*/
namespace humhub\modules\privacybox;
use yii\web\AssetBundle;
* The asset bundle for the gallery module.
*
* @package humhub.modules.gallery
* @since 1.0
* @author Sebastian Stumpf
class Assets extends AssetBundle
{
public $publishOptions = [
'forceCopy' => true
];
public $css = [
'privacybox.css',
public function init()
$this->sourcePath = dirname(__FILE__) . '/assets';
parent::init();
}