Hi EPESI Team,
On the Calendar ActionBar, there is a button called "Add event"
I am creating a new module and I would like to extend the Calendar actionbar with the new module.
how to I go regarding that?
I tried to use viewtopic.php?f=8&t=1431&p=4894&hilit=Action+Bar#p4894 as a reference but no dice 🙁
Here is what I got:
in my TestCommon_0.php
public static function add_action_bar(){
Base_ActionBarCommon::add(
'Register',
Base_BoxCommon::main_module_instance()->create_callback_href(array('Test_TestCommon', 'register')));
}
and in my TestInstall:
Utils_RecordBrowserCommon::register_processing_callback('crm_calendar',array('Test_TestCommon','add_action_bar'));
Installed the CRM Module successfully but when I go to the CRM calendar, I do not see any Icons in the ActionBar.