1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| <?php $_LW->REGISTERED_APPS['my_app']=[ 'title'=>'My App', 'handlers'=>['onFormsSuccess'], ];
class LiveWhaleApplicationMyApp {
public function onFormsSuccess($buffer, $form_id) { global $_LW; if ($form_id === 6) { } return $buffer; }
} ?>
|