This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function process_form($entry_id, $form_id) { | |
global $frmdb, $wpdb; | |
$created_post_id = $wpdb->get_var("SELECT post_id FROM $frmdb->entries WHERE id=".$entry_id.""); | |
// whatever else this function is supposed to do | |
} | |
add_action('frm_after_create_entry', 'process_form', 50, 2); | |
// low priority to ensure that the post has actually been created - careful not to fire too soon |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$page_id = $wp_query->post->id; // using global var to reference current post/page outside of loop in wordpress |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Helper-function outputs the correct form element (input tag, select tag, checkbox tag) for the given item | |
* @param $aOptionKey string name of the option (un-prefixed) | |
* @param $aOptionMeta mixed meta-data for $aOptionKey (either a string display-name or an array(display-name, option1, option2, ...) | |
* @param $savedOptionValue string current value for $aOptionKey | |
* @return void | |
*/ | |
protected function createFormControl($aOptionKey, $aOptionMeta, $savedOptionValue, $aOptionFormat = 'select') { | |
if (is_array($aOptionMeta) && count($aOptionMeta) >= 2) { | |
NewerOlder