PHP code example of dhluther / yii2-swivel

1. Go to this page and download the library: Download dhluther/yii2-swivel library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

dhluther / yii2-swivel example snippets


 'swivel' => [ 
 	'class'=>'dhluther\swivel\SwivelComponent' 
 ],

// If the user has the feature behavior bucket enabled, use the testFeature.New.Something behavior,
// else use the default
Yii::$app->swivel->forFeature( 'testFeature' )
	->addBehavior('New.Something', [$this,'doSomethingB'], $args)
	->defaultBehavior([$this, 'doSomethingA'], $args )
	->execute();

// If the user has the feature behavior bucket enabled, use the first callable,
// else use the second callable (default)
Yii::$app->swivel->invoke('testFeature.New.Something', [$this,'doSomethingB'],[$this, 'doSomethingA']);



'migrationNamespaces'=>[
    'dhluther\\swivel\\migrations'
]

'@dhluther\swivel'=>'@vendor/dhluther/yii2-swivel/src'