|
1
|
<?php |
|
2
|
$icon_name = [ |
|
3
|
'none' => '', |
|
4
|
'arrow' => is_rtl() ? 'arrow-left' : 'arrow-right', |
|
5
|
'chevron' => is_rtl() ? 'chevron-left' : 'chevron-right', |
|
6
|
][ $attributes['icon'] ] ?? $attributes['icon']; |
|
7
|
|
|
8
|
// Return the view. |
|
9
|
return 'file:./view.php'; |
|
10
|
|