Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@iredun
Created July 30, 2019 13:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iredun/4dd883cef2e412f2b93cfb4b2398871a to your computer and use it in GitHub Desktop.
Save iredun/4dd883cef2e412f2b93cfb4b2398871a to your computer and use it in GitHub Desktop.
Убрать вкладку "Реклама" при редактировании элемента инфоблока 1С-Битрикс
<?
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