public function __construct($config = [])
 {
     $this->js[] = $this->getGoogleMapScriptUrl();
     $this->js[] = 'js/google-map-marker.js';
     $this->css[] = 'css/google-map-marker.css';
     parent::__construct($config);
 }
Ejemplo n.º 2
0
 public function __construct($config = [])
 {
     if (array_key_exists('js', $config)) {
         $this->jsIsSet = true;
     }
     if (array_key_exists('css', $config)) {
         $this->cssIsSet = true;
     }
     parent::__construct($config);
 }
 public function __construct($config = [])
 {
     $this->js[] = $this->getGoogleMapScriptUrl();
     if (YII_DEBUG) {
         $this->js[] = 'js/map-input-widget.js';
     } else {
         $this->js[] = 'js/map-input-widget.min.js';
     }
     parent::__construct($config);
 }
Ejemplo n.º 4
0
 public function __construct()
 {
     parent::__construct();
     // Remove the default styles of the auth client.
     $bundles = Yii::$app->assetManager->bundles;
     $classPath = $this->depends[0];
     if (isset($bundles[$classPath])) {
         $bundles[$classPath]->css = [];
     }
 }
Ejemplo n.º 5
0
 public function __construct($config = array())
 {
     parent::__construct($config);
     if (Yii::$app->helper->isRtl()) {
         $this->css[] = 'css/bootstrap-rtl.min.css';
     }
     if (Yii::$app->language == 'fa-IR') {
         $this->css[] = 'css/font.min.css';
     }
 }
Ejemplo n.º 6
0
 public function __construct($config = [])
 {
     $this->js[] = $this->getGoogleMapScriptUrl();
     $this->js[] = "http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js";
     if (YII_DEBUG) {
         $this->js[] = 'js/map-input-widget.js';
     } else {
         $this->js[] = 'js/map-input-widget.min.js';
     }
     parent::__construct($config);
 }
Ejemplo n.º 7
0
 public function __construct()
 {
     parent::__construct();
     // Path Configuration
     $this->sourcePath = dirname(__DIR__) . '/resources';
     // Load CSS
     $this->css = ["styles/public.css"];
     // Load Javascript
     $this->js = ["scripts/vendor/conditionizr-4.4.0.min.js", "conditionizr/detects/ie6-ie7-ie8-ie9.js", "scripts/vendor/imagesloaded.pkgd-3.1.8.min.js", "scripts/cmgtools/cmt-core.js", "scripts/cmgtools/cmt-page-module.js", "scripts/main.js"];
     // Define the Position to load Assets
     $this->jsOptions = ["position" => View::POS_END];
     // Define dependent Asset Loaders
     $this->depends = ['yii\\web\\JqueryAsset'];
 }
Ejemplo n.º 8
0
 public function __construct()
 {
     parent::__construct();
     // Change the default jQuery UI theme.
     $this->configureJuiTheme('base');
     // Get the current theme if set and valid.
     $theme = Theme::theme();
     // If not set or not valid, use the default theme.
     if (!$theme) {
         $this->depends = [static::$defaultThemeAsset];
         return;
     }
     // Configure bootstrap and jQuery UI theme.
     $this->configureBootstrap($theme->bootstrap);
     $this->configureJuiTheme($theme->juiTheme);
     // Setup the dependencies.
     $this->configureDependencies($theme->depends);
     $this->configureDependencies($theme->depends);
     // Set source path for the theme assets and register CSS and JS.
     $this->sourcePath = $theme->sourcePath;
     $this->configureDependencies($theme->depends);
     $this->configureCSS($theme->css);
     $this->configureJS($theme->js);
 }
Ejemplo n.º 9
0
 public function __construct($config = array())
 {
     parent::__construct($config);
     $this->basePath = str_replace(['work', 'hrm', 'kpi'], ['common'], Yii::getAlias("@webroot"));
 }
 public function __construct()
 {
     parent::__construct();
 }
Ejemplo n.º 11
0
 public function __construct()
 {
     parent::__construct();
     $this->baseUrl = \yii::getAlias('@base_url');
 }
Ejemplo n.º 12
0
 public function __construct($config = [])
 {
     parent::__construct($config);
     $this->sourcePath = __DIR__ . DIRECTORY_SEPARATOR . 'assets';
 }
Ejemplo n.º 13
0
 public function __construct()
 {
     //$this->css = [STYLES_PATH.'/site.css', STYLES_PATH.'/main.css'];
     parent::__construct();
 }
Ejemplo n.º 14
0
 public function __construct()
 {
     parent::__construct();
     // Path Configuration
     $this->sourcePath = dirname(__FILE__) . '/resources';
 }
Ejemplo n.º 15
0
 /**
  * @inheritdoc
  */
 public function __construct($config = [])
 {
     $this->sourcePath = dirname(__FILE__);
     parent::__construct($config);
 }