PHP code example of kartik-v / yii2-sortable
1. Go to this page and download the library: Download kartik-v/yii2-sortable 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/ */
kartik-v / yii2-sortable example snippets
use kartik\sortable\Sortable;
echo Sortable::widget([
'type' => Sortable::TYPE_LIST,
'items' => [
['content' => 'Item # 1'],
['content' => 'Item # 2'],
['content' => 'Item # 3'],
]
]);