generated from yii2-extensions/template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Stefano Mtangoo
committed
Sep 29, 2024
1 parent
2089896
commit 8f4c837
Showing
2 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yii2\Extensions\Select2\Themes; | ||
|
||
use yii\web\AssetBundle; | ||
|
||
|
||
class Select2BS5ThemeAsset extends AssetBundle | ||
{ | ||
public $sourcePath = '@npm/select2-bootstrap-5-theme/dist'; | ||
|
||
public $js = []; | ||
|
||
public $css = [ | ||
'select2-bootstrap-5-theme.min.css', | ||
]; | ||
|
||
public function init() | ||
{ | ||
parent::init(); | ||
|
||
//which BS version is installed (from highest to lowest) | ||
if (class_exists('yii\bootstrap5\BootstrapAsset')) { //BS5 official | ||
$this->depends[] = 'yii\bootstrap5\BootstrapAsset'; | ||
} else if (class_exists('Yii2\Asset\BootstrapAsset')) { //BS5 Yii2-Ext | ||
$this->depends[] = 'Yii2\Asset\BootstrapAsset'; | ||
} | ||
} | ||
} |