for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright Copyright (c) Flipbox Digital Limited
* @license https://flipboxfactory.com/software/link/license
* @link https://www.flipboxfactory.com/software/link/
*/
namespace flipbox\link\web\assets\settings;
use craft\web\AssetBundle;
use craft\web\assets\cp\CpAsset;
* @author Flipbox Factory <[email protected]>
* @since 1.0.0
class Settings extends AssetBundle
{
* @inheritdoc
public $sourcePath = __DIR__ . '/dist';
public $depends = [
CpAsset::class,
];
public function init()
$this->js = [
'LinkConfiguration' . $this->dotJs()
$this->css = [
'LinkConfiguration.css'
parent::init();
}