SuiteCRM-Core/public/legacy/install/suite_install/CalendarSync.php
2026-04-23 08:23:18 +01:00

33 lines
1.2 KiB
PHP

<?php
function install_calendar_sync_hooks()
{
installCalendarSyncHooks();
}
function installCalendarSyncHooks()
{
$hooks = array(
array(
'module' => 'Meetings',
'hook' => 'after_save',
'order' => 1,
'description' => 'Meeting Calendar Sync After Save',
'file' => 'modules/Meetings/MeetingCalendarSyncLogicHook.php',
'class' => 'MeetingCalendarSyncLogicHook',
'function' => 'afterSave',
),
array(
'module' => 'Meetings',
'hook' => 'after_delete',
'order' => 1,
'description' => 'Meeting Calendar Sync After Delete',
'file' => 'modules/Meetings/MeetingCalendarSyncLogicHook.php',
'class' => 'MeetingCalendarSyncLogicHook',
'function' => 'afterDelete',
),
);
foreach ($hooks as $hook) {
check_logic_hook_file($hook['module'], $hook['hook'], array($hook['order'], $hook['description'], $hook['file'], $hook['class'], $hook['function']));
}
}