mdmsoft/import

Import namespace

1.1 2016-03-11 05:09 UTC

This package is not auto-updated.

Last update: 2024-04-23 07:49:34 UTC


README

Import classes under namespace and used without namespace.

Latest Stable Version Total Downloads License Dependency Status Code Climate

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require mdmsoft/import "~1.0"

for dev-master

php composer.phar require mdmsoft/import "~1.0"

or add

"mdmsoft/import": "~1.0"

to the require section of your composer.json file.

Usage

Once the extension is installed, use in your code:

<?php
Import::using('yii\bootstrap\Button'); // import yii\bootstrap\Button
Import::using('yii\widgets\*'); // import all class under namespace yii\widgets
Import::using('yii\bootstrap\Html', 'BootstrapHtml'); // import with alias
Import::using([
    'yii\helpers\Html' => 'Html',
    'yii\helpers\ArrayHelper',
]);
?>
<?php
echo Button::widget([
    'label' => 'Action Test',
    'options' => ['class' => 'btn-lg'],
]);

echo BootstrapHtml::icon('star');
?>

<?php Spaceless::begin(); ?>
<div>
    <span>ABCDE</span>
</div>
<?php Spaceless::end();?>

<?php $form = ActiveForm::begin()?>
    <?= $form->field($model,'attribute'); ?>

<?php ActiveForm::end();?>