on_information_set_delete

Navigation:  Development > Function Reference > Common Callbacks >

on_information_set_delete

Previous pageReturn to chapter overviewNext page

Execute when we delete an InformationSet from Admin Panel. See below example:

 

class Development_Callbacks extends appRain_Base_Modules_Callbacks
{
    public function on_information_set_delete($options = NULL)
    {
        switch ($options['type']) {
        }
    }
}

 

Function receive Type and Id of informationSet.

 

Related Functions: on_information_set_view, before_information_set_save, after_information_set_save