Extra Form
PHP PHP 7.2
CMS Rhymix 2.x

if($called_position == 'before_module_init') {

if(!function_exists('addon_wst_addfriend_ext_trigger'))
{
    function addon_wst_addfriend_ext_trigger($args)
    {
        // Trigger Code...
        return $args;
    }
}
 
// 트리거 등록
$oModuleController = getController('module');
$oModuleController->addTriggerFunction('member.deleteMember', 'after', 'addon_wst_addfriend_ext_trigger');
}

 

위와 같이 시도했는데요. 

db 에서 확인해보면 트리거 등록이 안된 것 같은데 잘못한 부분이 어디일까요?

  • profile
    어... db에서 트리거 목록에서 몾찼겠는데 코드는 작동하네요........
  • profile profile
    안뜨는게 맞습니다.
    __trigger_functions__ 에만 추가되요 ~
  • profile profile
    네. 테스트해보고 작동이 되서 안뜨는거구나 하고 그러고 있네요 ㅎ
  • profile profile
    https://github.com/rhymix/rhymix/blob/c9a46e16931889c731fb575b6ea272b89f47a6da/modules/module/module.controller.php#L64