Noptin_Automation_Rules_Table::get_bulk_actions()
[OPTIONAL] Return array of bulk actions if has any
Return Return
(array)
Source Source
File: includes/automation-rules/class-noptin-automation-rules-table.php
function get_bulk_actions() { $actions = array( 'delete' => __( 'Delete', 'newsletter-optin-box' ), 'activate' => __( 'Activate', 'newsletter-optin-box' ), 'deactivate' => __( 'Deactivate', 'newsletter-optin-box' ), ); /** * Filters the bulk table actions shown on automation rules tables. * * @param array $actions An array of bulk actions. */ return apply_filters( 'manage_noptin_automation_rules_table_bulk_actions', $actions ); }
Expand full source code Collapse full source code View on GitHub