Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chebanenko/d20dabd538bab50bd2a5 to your computer and use it in GitHub Desktop.
Save chebanenko/d20dabd538bab50bd2a5 to your computer and use it in GitHub Desktop.
AddEventHandler("main", "OnAdminContextMenuShow", "MyOnAdminContextMenuShow");
function MyOnAdminContextMenuShow(&$items)
{
//add custom button to the index page toolbar
if($GLOBALS["APPLICATION"]->GetCurPage(true) == "/bitrix/admin/iblock_element_edit.php")
{
$items[] = array("TEXT"=>"TEST", "ICON"=>"", "TITLE"=>"TEST", "LINK"=>"javascript:alert('asd');", "CLASS" =>"asdas");
// init jQuery from core
CJSCore::Init(array("jquery"));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment