sourcePath |
= Html::encode($bundle['sourcePath'] !== null ? $bundle['sourcePath'] : $bundle['basePath']) ?> |
basePath |
= Html::encode($bundle['basePath']) ?> |
baseUrl |
= Html::encode($bundle['baseUrl']) ?> |
css |
= Html::ul($bundle['css'], [
'class' => 'assets',
'item' => function ($item) {
if (is_array($item)) {
$item = reset($item);
}
return Html::tag('li', Html::encode($item));
}
]) ?>
|
js |
= Html::ul($bundle['js'], [
'class' => 'assets',
'item' => function ($item) {
if (is_array($item)) {
$item = reset($item);
}
return Html::tag('li', Html::encode($item));
}
]) ?>
|
depends |
- = Html::a($depend, '#' . Inflector::camel2id($depend)) ?>
|