Created
July 30, 2019 13:34
-
-
Save iredun/4dd883cef2e412f2b93cfb4b2398871a to your computer and use it in GitHub Desktop.
Убрать вкладку "Реклама" при редактировании элемента инфоблока 1С-Битрикс
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
<? | |
AddEventHandler('main','OnAdminTabControlBegin','RemoveYandexDirectTab'); | |
function RemoveYandexDirectTab(&$TabControl){ | |
if ($GLOBALS['APPLICATION']->GetCurPage()=='/bitrix/admin/iblock_element_edit.php') { | |
foreach($TabControl->tabs as $Key => $arTab){ | |
if($arTab['DIV']=='seo_adv_seo_adv') { | |
unset($TabControl->tabs[$Key]); | |
} | |
} | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment