Skip to content

mdmsoft/import

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Import Namespace

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();?>