Advertisement
KateBarylo

Untitled

Jun 26th, 2019
403
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.24 KB | None | 0 0
  1.                                     <ul class="menu is-dropdown-submenu cabinet text-left" >
  2.                                         <?php foreach ($divisions as $kodDiv => $divValue):?>
  3.                                         <li class="card-panel card-panel-<?php print $kodDiv; ?> teacher-report teacher-report-<?php print $kodDiv; ?>">
  4.                                              <a id="report_prev" class="tab-switcher" href="/index/report?data=<? print $divValue['REPORT_PREV'] ?>" target="_blank"><span class="size-15 font-awesome">&#xf1c1;</span> <?= sprintf($this->labels['report_title'], $numYear-1, $numYear ) ?></a>
  5.                                         </li>
  6.                                         <li class="card-panel card-panel-<?php print $kodDiv; ?> teacher-report teacher-report-<?php print $kodDiv; ?>">
  7.                                             <a id="report_curr" class="tab-switcher" href="/index/report?data=<? print $divValue['REPORT_CURR'] ?>" target="_blank"><span class="font-awesome">&#xf1c1;</span> <?= sprintf($this->labels['report_title'], $numYear, $numYear+1 ) ?></a>
  8.                                         </li>
  9.                                         <?php endforeach; ?>
  10.                                     </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement