formcierge_activity_types
Filter
Since v1.0.0
Modify the list of activity types recorded in the entry activity log. Each type maps to a label shown in the admin. Add custom types here to support addon-specific activities.
Parameters
$types
array
Associative array of type_key => label pairs.
includes/Controllers/EntryController.php
Basic Usage
add_filter( 'formcierge_activity_types', function ( $types ) {
$types['crm_push'] = 'CRM Push';
return $types;
} );