Blame view
personal/sect_sidebar.php
1.3 KB
2fe1e5ce8 Первый коммит на ... |
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
<?if(!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true)die();?> <div class="bx-sidebar-block"> <?$APPLICATION->IncludeComponent("bitrix:menu", "personal_menu", array( "ROOT_MENU_TYPE" => "personal", "MAX_LEVEL" => "1", "MENU_CACHE_TYPE" => "A", "CACHE_SELECTED_ITEMS" => "N", "MENU_CACHE_TIME" => "36000000", "MENU_CACHE_USE_GROUPS" => "Y", "MENU_CACHE_GET_VARS" => array(), ), false );?> </div> <div class="bx-sidebar-block"> <?$APPLICATION->IncludeComponent( "bitrix:main.include", "", Array( "AREA_FILE_SHOW" => "file", "PATH" => SITE_DIR."include/socnet_sidebar.php", "AREA_FILE_RECURSIVE" => "N", "EDIT_MODE" => "html", ), false, Array('HIDE_ICONS' => 'Y') );?> </div> <div class="bx-sidebar-block hidden-xs"> <?$APPLICATION->IncludeComponent( "bitrix:main.include", "", Array( "AREA_FILE_SHOW" => "file", "PATH" => SITE_DIR."include/sender.php", "AREA_FILE_RECURSIVE" => "N", "EDIT_MODE" => "html", ), false, Array('HIDE_ICONS' => 'Y') );?> </div> <div class="bx-sidebar-block"> <?$APPLICATION->IncludeComponent( "bitrix:main.include", "", Array( "AREA_FILE_SHOW" => "file", "PATH" => SITE_DIR."include/about.php", "AREA_FILE_RECURSIVE" => "N", "EDIT_MODE" => "html", ), false, Array('HIDE_ICONS' => 'N') );?> </div> |