This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ol> | |
| <li>Пункт_1</li> | |
| <li>Пункт_2</li> | |
| <li>Пункт_3 | |
| <ol> | |
| <li>Подпункт_1</li> | |
| <li>Подпункт_2</li> | |
| </ol> | |
| </li> | |
| <li>Пункт_4</li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ul> | |
| <li>Элемент_1</li> | |
| <li>Элемент_2</li> | |
| <li>Элемент_3</li> | |
| </ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?$APPLICATION->IncludeComponent("bitrix:main.include", "", array("AREA_FILE_SHOW" => "file", "PATH" => SITE_DIR."include/add-course-form.php"), false);?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?$APPLICATION->IncludeComponent( | |
| "nyphalim:variable.set", | |
| "footer-info", | |
| array( | |
| "COMPONENT_TEMPLATE" => "footer-info", | |
| "var1" => "ООО «Джей Джи Си Эвергрин»", | |
| "var2" => "680000, Хабаровский край, г. Хабаровск, Донская, 2", | |
| "var3" => "Тел. 8 (4212) 39-01-49", | |
| "var4" => "ok@j-eve.ru" | |
| ), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?=SITE_TEMPLATE_PATH;?>/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <? | |
| function bclass() { | |
| global $APPLICATION; | |
| $DirExp = explode('/', $APPLICATION->GetCurDir()); | |
| if($DirExp[1] !== ''): return ' class="'.$DirExp[1].'"'; endif; | |
| } | |
| ?> | |
| <body<?echo bclass();?>> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?$arPrice = CCatalogProduct::GetOptimalPrice($arItem["ITEM_ID"], 1, $USER->GetUserGroupArray()); | |
| if($arPrice):?> | |
| <div class="cost"><?=CurrencyFormat($arPrice["PRICE"]["PRICE"], "RUB");?> р.</div> | |
| <?endif;?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $arFilter = Array( | |
| "IBLOCK_ID"=>array("6", "22", "4"), | |
| "ACTIVE"=>"Y", | |
| ">PROPERTY_WDATE" => FormatDate("Y-m-d H:i", mktime(date("H"), 0, 0, date("m"), date("d"), date("Y"))), | |
| "<PROPERTY_WDATE" => FormatDate("Y-m-d H:i", mktime(0, 0, 0, date("m"), date("d")+1, date("Y"))), | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $arFilter = Array( | |
| "IBLOCK_ID"=>array("6", "22", "4"), | |
| "ACTIVE"=>"Y", | |
| array( | |
| "LOGIC" => "OR", | |
| array("PROPERTY_AUTHORS"=> $arResult["ID"]), | |
| array("PROPERTY_author"=> $arResult["ID"]), | |
| ), | |
| ">PROPERTY_WDATE" => FormatDate("Y-m-d H:i", mktime(date("H"), 0, 0, date("m"), date("d"), date("Y"))), | |
| ); |
NewerOlder