PHP code example of kartik-v / yii2-widget-affix
1. Go to this page and download the library: Download kartik-v/yii2-widget-affix 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-widget-affix example snippets
use kartik\affix\Affix;
$content = 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.';
$items = [[
'url' => '#sec-1',
'label' => 'Section 1',
'icon' => 'play-circle',
'content' => $content,
'items' => [
['url' => '#sec-1-1', 'label' => 'Section 1.1', 'content' => $content],
['url' => '#sec-1-2', 'label' => 'Section 1.2', 'content' => $content],
['url' => '#sec-1-3', 'label' => 'Section 1.3', 'content' => $content],
['url' => '#sec-1-4', 'label' => 'Section 1.4', 'content' => $content],
['url' => '#sec-1-5', 'label' => 'Section 1.5', 'content' => $content],
],
]];
// Displays sidebar menu
echo Affix::widget([
'items' => $items,
'type' => 'menu'
]);
// Displays body sections
echo Affix::widget([
'items' => $items,
'type' => 'body'
]);
$ php composer.phar