Advertisement
vitvayti

Untitled

Mar 20th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.48 KB | None | 0 0
  1. <? if (!empty($arResult["COURSE"])): ?>
  2.         <div class="forms__block">
  3.             <span class="forms__head"><?= $arResult['PROGRAM_NAME'] ?: $arResult["COURSE"]['NAME'] ?></span>
  4.             <div class="forms__block_area">
  5.                 <? if ($arResult['SHOW_TEST_LINK']): ?>
  6.                     <? if ($arResult['SHOW_TEST_SELF']): ?>
  7.                         <a class="forms__block_link" href="/simulator/" title="">Тесты для самопроверки</a>
  8.                     <? endif; ?>
  9.                     <? if (!$arResult['SHOW_TEST']): ?>
  10.                         <a class="forms__block_link" href="/education/test/" title="">Сдать экзамен</a>
  11.                     <? endif; ?>
  12.                 <? endif ?>
  13.                 <? if (!empty($arItem['CONTENTS'])): ?><span class="form__head">Материалы для лекций</span><? endif; ?>
  14.             </div>
  15.             <? foreach ($arResult['CONTENTS'] as $arItem): ?>
  16.                 <? if ($arItem['DEPTH_LEVEL'] == 1 && !empty($arItem['SUB_ITEMS'])): ?>
  17.                     <div class="forms__block_area">
  18.                         <h2 class="forms__block_title"><strong><?= $arItem['NAME'] ?></strong></h2>
  19.                         <? foreach ($arItem['SUB_ITEMS'] as $arSubItem): ?>
  20.                             <? if (!$arSubItem['PROPS']['UF_FILE_UNPACKED']
  21.                                 && !$arSubItem['PROPS']['UF_FILE_SRC']
  22.                                 && !$arSubItem['PROPS']['UF_LINK']): ?>
  23.                                 <h3><strong><?= $arSubItem['NAME'] ?></strong></h3>
  24.                             <? else: ?>
  25.                                 <? showLessonItem($arSubItem) ?>
  26.                             <? endif ?>
  27.                             <? if ($arSubItem['IS_CHILDS']): ?>
  28.                                 <? foreach ($arSubItem['SUB_ITEMS'] as $arSubSubItem): ?>
  29.                                     <? if (!$arSubSubItem['PROPS']['UF_FILE_UNPACKED']
  30.                                         && !$arSubSubItem['PROPS']['UF_FILE_SRC']
  31.                                         && !$arSubSubItem['PROPS']['UF_LINK']): ?>
  32.                                         <p><strong><?= $arSubSubItem['NAME'] ?></strong></p>
  33.                                     <? else: ?>
  34.                                         <? showLessonItem($arSubSubItem) ?>
  35.                                     <? endif ?>
  36.                                     <? if ($arSubItem['IS_CHILDS']): ?>
  37.                                         <? foreach ($arSubSubItem['SUB_ITEMS'] as $arSubSubSubItem): ?>
  38.                                             <? if (!$arSubSubSubItem['PROPS']['UF_FILE_UNPACKED']
  39.                                                 && !$arSubSubSubItem['PROPS']['UF_FILE_SRC']
  40.                                                 && !$arSubSubSubItem['PROPS']['UF_LINK']): ?>
  41.                                                 <p><strong><?= $arSubSubSubItem['NAME'] ?></strong></p>
  42.                                             <? else: ?>
  43.                                                 <? showLessonItem($arSubSubSubItem) ?>
  44.                                             <? endif ?>
  45.                                         <? endforeach; ?>
  46.                                     <? endif; ?>
  47.                                 <? endforeach; ?>
  48.                             <? endif; ?>
  49.                         <? endforeach; ?>
  50.                     </div>
  51.                 <? endif; ?>
  52.             <? endforeach; ?>
  53.         </div>
  54.     <? endif ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement