| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
die( 'You are not allowed to call this page directly.' ); |
| 4 |
} |
| 5 |
|
| 6 |
class FrmFormActionsHelper { |
| 7 |
|
| 8 |
public static function get_action_for_form( $form_id, $type = 'all', $limit = 99 ) { |
| 9 |
//_deprecated_function( __FUNCTION__, '2.0.9', 'FrmFormAction::get_action_for_form' ); |
| 10 |
return FrmFormAction::get_action_for_form( $form_id, $type, $limit ); |
| 11 |
} |
| 12 |
|
| 13 |
public static function default_action_opts( $class = '' ) { |
| 14 |
//_deprecated_function( __FUNCTION__, '2.0.9', 'FrmFormAction::default_action_opts' ); |
| 15 |
return FrmFormAction::default_action_opts( $class ); |
| 16 |
} |
| 17 |
} |
| 18 |
|