Advertisement
KateBarylo

Untitled

Apr 23rd, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.21 KB | None | 0 0
  1.                 <?php foreach ($value['DISCIPLINE'] as $idGroup => $discValue): $num = 1; ?>
  2.                 <tbody class="hover">
  3.                     <tr class="b-none">
  4.                         <td class="border-top border-right text-center p-b025"><?php print $num; ?></td>
  5.                         <td class="border-right p-b025 w-space-nowrap">
  6.                             <span class="w-space-normal"><?php print $discValue['NAME_DISC']; ?></span></td>
  7.                         <td class="text-center border-top border-bottom"
  8.                             rowspan="2"><?php print $discValue['PLAN_HOUR']; ?></td>
  9.                     </tr>
  10.                    <tr class="b-none">
  11.                         <td class="border-right border-bottom p-t025 max-trows" data-maxmin-trows ="<?php print $idGroup; ?>"></td>
  12.                         <td class="border-bottom border-right p-t025 l-h-0-9 w-space-nowrap">
  13.                             <i class="size-08 w-space-normal"><?php print $discValue['COURSE'] . $this->labels['course'] . ', ' . $discValue['NAME_FORM'] . ' ' . $this->labels['form'] . ', ' . $discValue['NAME_LEVEL']; ?></i>
  14.                         </td>
  15.                     </tr>
  16.                 </tbody>
  17.                     <tbody class="<?php print $idGroup; ?> hide">
  18.                     <?php foreach ($discValue['STUDIES'] as $key => $studyValue): ?>
  19.                         <tr class="hover b-none">
  20.                             <td class="border-bottom border-right" style="width: 16px; padding: 0.5rem 0 0.5rem 0.5rem">
  21.                             </td>
  22.                             <td class="border-bottom border-right">
  23.                                 <span class="size-09"><?php print $studyValue['NAME_GSTD'] . ' ' . $studyValue['TEXT_STUD']; ?></span>
  24.                                 <p class="column small-12 m-t-05 size-07 none l-h-1-1">
  25.                                     <i><?php print $studyValue['NAME_MOD']; ?></i></p>
  26.                             </td>
  27.                             <td class="text-center border-bottom"><?php print $studyValue['PLAN_HOUR']; ?></td>
  28.                         </tr>
  29.                     <?php endforeach; ?>
  30.                     </tbody>
  31.                 <?php $num++; endforeach; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement