_lkLeftMenu.php 617 Bytes
Newer Older
Яков's avatar
first  
Яков committed
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

<h3 style="font-size: 25px; color:#4a4a4a; font-family: 'lato'; font-weight: 400; text-align: center">Личный кабинет</h3>

<div class="er_content__side_menu_wrap">
    <ul class="er_content__side_menu_lk">


        <?php

        foreach ($links as $link)

        {
            $dopClass = false;
            if ($link['url'] == $path)
            {
                $dopClass = 'active';
            }


            echo '<li class="' . $dopClass . '">';
            echo '<a href="' . $link['url'] . '">' . $link['anchor'] . '</a>';
            echo '</li>';

        }


        ?>

    </ul>
</div>