D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
html
/
epaji.com
/
public_html
/
hindiusa
/
assets
/
Filename :
AppAsset.php
back
Copy
<?php /** * @link http://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Software LLC * @license http://www.yiiframework.com/license/ */ namespace app\assets; use yii\web\AssetBundle; /** * Main application asset bundle. * * @author Qiang Xue <qiang.xue@gmail.com> * @since 2.0 */ class AppAsset extends AssetBundle { public $basePath = '@webroot'; public $baseUrl = '@web'; public $css = [ 'css/site.css', 'themes/kidz/assets/plugins/font-awesome/css/font-awesome.min.css', 'themes/kidz/assets/plugins/no-ui-slider/nouislider.min.css', 'themes/kidz/assets/plugins/owl-carousel/owl.carousel.min.css', 'themes/kidz/assets/plugins/owl-carousel/owl.theme.default.min.css', 'themes/kidz/assets/plugins/fancybox/jquery.fancybox.min.css', 'themes/kidz/assets/plugins/isotope/isotope.min.css', 'themes/kidz/assets/plugins/animate/animate.css', 'themes/kidz/assets/plugins/select2/css/select2.min.css', 'themes/kidz/assets/plugins/revolution/css/settings.css', 'themes/kidz/assets/plugins/revolution/css/layers.css', 'themes/kidz/assets/plugins/revolution/css/navigation.css', 'themes/kidz/assets/css/kidz.css', ]; public $js = [ //'themes/kidz/assets/plugins/jquery/jquery.min.js', 'themes/kidz/assets/plugins/bootstrap/js/bootstrap.bundle.min.js', 'themes/kidz/assets/plugins/owl-carousel/owl.carousel.min.js', 'themes/kidz/assets/plugins/fancybox/jquery.fancybox.min.js', 'themes/kidz/assets/plugins/isotope/isotope.min.js', 'themes/kidz/assets/plugins/syotimer/jquery.syotimer.min.js', 'themes/kidz/assets/plugins/select2/js/select2.min.js', 'themes/kidz/assets/plugins/no-ui-slider/nouislider.min.js', 'themes/kidz/assets/plugins/lazyestload/lazyestload.js', 'themes/kidz/assets/plugins/velocity/velocity.min.js', 'themes/kidz/assets/plugins/smoothscroll/SmoothScroll.js', 'themes/kidz/assets/plugins/images-loaded/js/imagesloaded.pkgd.min.js', 'themes/kidz/assets/plugins/revolution/js/jquery.themepunch.tools.min.js', 'themes/kidz/assets/plugins/revolution/js/jquery.themepunch.revolution.min.js', 'themes/kidz/assets/plugins/wow/wow.min.js', 'themes/kidz/assets/js/kidz.js', 'themes/kidz/assets/plugins/revolution/js/extensions/revolution.extension.slideanims.min.js', 'themes/kidz/assets/plugins/revolution/js/extensions/revolution.extension.layeranimation.min.js', 'themes/kidz/assets/plugins/revolution/js/extensions/revolution.extension.navigation.min.js', ]; public $depends = [ 'yii\web\YiiAsset', 'yii\bootstrap4\BootstrapAsset', ]; }