surveyjs / surveyjs-wordpress

Example of integration SurveyJS: Survey Library and Survey Creator into WordPress
https://wordpress.org/plugins/surveyjs/
38 stars 18 forks source link

PR: Support Functions-php #52

Closed dmitry-kurmanov closed 2 months ago

dmitry-kurmanov commented 2 months ago

https://github.com/surveyjs/surveyjs-wordpress/issues/51

/**
 * Custom Save Survey Result function
 * file functions.php
 */
function surveyjs_save_result($SurveyId=null, $Json=null, $TableName=null) {
    /*do stuff*/ 
}
add_action( 'wp_surveyjs_save_result', 'surveyjs_save_result', 10, 3 );