kr0lik / yii2-yandex-sovetnik-hide-asset
Yii2 asset for yandex sovetnik hide javascript file
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 849
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- kr0lik/yandex-sovetnik-hide: >=1.0
This package is auto-updated.
Last update: 2020-03-16 11:48:41 UTC
README
Yii2 asset for yandex-sovetnik-hide
Installation
The preferred way to install this extension is through composer.
Either run
composer require --prefer-dist kr0lik/yii2-yandex-sovetnik-hide-asset "*"
or add
"kr0lik/yii2-yandex-sovetnik-hide-asset": "*"
to the require section of your composer.json
file.
Usage
In View:
<?php use kr0lik\stopsovetnik\StopSovetnikAsset; StopSovetnikAsset::register($this); ?>
In Asset:
<?php namespace app\assets; use yii\web\AssetBundle; use kr0lik\stopsovetnik\StopSovetnikAsset; class SiteAsset extends AssetBundle { public $basePath = '@webroot'; public $baseUrl = '@web'; public $css = [ 'your/style.css', ]; public $js = [ 'your/scripts.js' ]; public $depends = [ StopSovetnikAsset::class ]; }