arm_after_form_validate_action
Usage: add_action( ‘arm_after_form_validate_action’, ‘your_function’, 10, 2 ); function your_function($armform, $posted_data) { //Do Your Action //$armform Form Object. //$posted_data Posted Form […]
Faster, Smoother New Version of ARMember7.0Launched Buy Now
Description.
Usage: add_action( ‘arm_after_form_validate_action’, ‘your_function’, 10, 2 ); function your_function($armform, $posted_data) { //Do Your Action //$armform Form Object. //$posted_data Posted Form […]
Usage: add_action( ‘arm_after_form_submit_action’, ‘your_function’ ); function your_function($armform) { //Do Your Action //$armform Form Object. } Parameters: $armform Form Object
Usage: add_action( ‘arm_before_form_submit_action’, ‘your_function’ ); function your_function($armform) { //Do Your Action //$armform Form Object. } Parameters: $armform Form Object
Usage: add_action( ‘arm_after_send_email_notification’, ‘your_function’, 10, 5 ); function your_function($from, $recipient, $subject, $message, $attachments) { //Do your action. } Parameters: $from
Usage: add_action( ‘arm_before_send_email_notification’, ‘your_function’, 10, 5 ); function your_function($from, $recipient, $subject, $message, $attachments) { //Do your action. } Parameters: $from
Usage: add_action( ‘arm_after_common_messages_settings_html’, ‘your_function’ ); function your_function($common_messages) { echo “Your options HTML.”; } Parameters: $common_messages Array of Common Messages
Usage: add_action( ‘arm_after_page_settings_html’, ‘your_function’ ); function your_function($page_settings) { echo “Your options HTML.”; } Parameters: $page_settings Array of Page Settings
Usage: add_action( ‘arm_after_global_settings_html’, ‘your_function’ ); function your_function($general_settings) { echo “Your options HTML.”; } Parameters: $general_settings Array of General Settings
Usage: add_action( ‘arm_before_global_settings_html’, ‘your_function’ ); function your_function($general_settings) { echo “Your options HTML.”; } Parameters: $general_settings Array of general Settings
Usage: add_action( ‘arm_after_uninstall’, ‘your_function_after_uninstall’ ); function your_function_after_uninstall() { // Do Your Action. }