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

Support Functions-php #51

Closed dmitry-kurmanov closed 2 months ago

dmitry-kurmanov commented 3 months ago

https://surveyjs.answerdesk.io/ticket/details/t19179/guidance-for-wp-plugin-use

dmitry-kurmanov commented 2 months ago
/**
 * 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 );