nf_old_subs_table_row_actions_filter
The Ninja Forms nf old subs table row actions filter function.
Description
Parameters (3)
- 0. $actions
- The actions.
- 1. $sub_id
- The sub id.
- 2. $form_id
- The form id.
Usage
if ( !function_exists( 'nf_old_subs_table_row_actions_filter' ) ) { require_once ABSPATH . PLUGINDIR . 'ninja-forms/deprecated/includes/deprecated.php'; } // The actions. $actions = null; // The sub id. $sub_id = null; // The form id. $form_id = null; // NOTICE! Understand what this does before running. $result = nf_old_subs_table_row_actions_filter($actions, $sub_id, $form_id);
Defined (1)
The function is defined in the following location(s).
- /deprecated/includes/deprecated.php
- function nf_old_subs_table_row_actions_filter( $actions, $sub_id, $form_id ) {
- return apply_filters( 'ninja_forms_sub_table_row_actions', array(), false, $sub_id, $form_id );
- }