for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* SaaS Link plugin for Craft CMS 3.x
*
* Craft Field Types for linking Entries to Harvest, Trello, and Capsule.
* @link https://workingconcept.com
* @copyright Copyright (c) 2018 Working Concept Inc.
*/
namespace workingconcept\saaslink\assetbundles\saaslink;
use craft\web\AssetBundle;
use craft\web\assets\cp\CpAsset;
class SaasLinkCpSettingsAsset extends AssetBundle
{
// Public Methods
// =========================================================================
* @inheritdoc
public function init()
$this->sourcePath = "@workingconcept/saaslink/assetbundles/saaslink/dist";
$this->depends = [
CpAsset::class,
];
$this->js = [
'js/saas-link-settings.js',
$this->css = [];
parent::init();
}