forked from kartik-v/yii2-widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Affix.php
42 lines (39 loc) · 940 Bytes
/
Affix.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/**
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014
* @package yii2-widgets
* @version 3.4.0
*/
namespace kartik\widgets;
/**
* A scrollspy and affixed enhanced navigation to highlight sections and secondary
* sections in each page
*
* For example:
*
* ```php
* echo Affix::widget([
* 'items' => [
* [
* 'url' => '#section-1',
* 'label' => 'Section 1',
* 'icon' => 'asterisk'
* ],
* [
* 'url' => '#section-2',
* 'label' => 'Section 2',
* 'icon' => 'asterisk'
* 'items' => [
* ['url' => '#section-2-1', 'label' => 'Section 2.1'],
* ['url' => '#section-2-2', 'label' => 'Section 2.2'],
* ],
* ],
* ],
* ]);
* ```
*
* @author Kartik Visweswaran <[email protected]>
*/
class Affix extends \kartik\affix\Affix
{
}