=')); if(!defined("GRAVITY_MANAGER_URL")) define("GRAVITY_MANAGER_URL", "http://www.gravityhelp.com/wp-content/plugins/gravitymanager"); require_once(WP_PLUGIN_DIR . "/" . basename(dirname(__FILE__)) . "/common.php"); require_once(WP_PLUGIN_DIR . "/" . basename(dirname(__FILE__)) . "/forms_model.php"); require_once(WP_PLUGIN_DIR . "/" . basename(dirname(__FILE__)) . "/widget.php"); add_action('init', array('RGForms', 'init')); add_action('wp', array('RGForms', 'maybe_process_form'), 9); add_action('wp', array('RGForms', 'process_exterior_pages')); add_filter('user_has_cap', array("RGForms", "user_has_cap"), 10, 3); //Hooks for no-conflict functionality if(is_admin() && (RGForms::is_gravity_page() || RGForms::is_gravity_ajax_action())){ add_action("wp_print_scripts", array("RGForms", "no_conflict_mode_script"), 1000); add_action("admin_print_footer_scripts", array("RGForms", "no_conflict_mode_script"), 9); add_action("wp_print_styles", array("RGForms", "no_conflict_mode_style"), 1000); add_action("admin_print_styles", array("RGForms", "no_conflict_mode_style"), 1); add_action("admin_print_footer_scripts", array("RGForms", "no_conflict_mode_style"), 1); add_action("admin_footer", array("RGForms", "no_conflict_mode_style"), 1); } class RGForms{ public static function has_members_plugin(){ return function_exists( 'members_get_capabilities' ); } //Plugin starting point. Will load appropriate files public static function init(){ load_plugin_textdomain( 'gravityforms', false, '/gravityforms/languages' ); add_filter("gform_logging_supported", array("RGForms", "set_logging_supported")); if(IS_ADMIN){ global $current_user; //Members plugin integration. Adding Gravity Forms roles to the checkbox list if (self::has_members_plugin()) add_filter('members_get_capabilities', array("RGForms", "members_get_capabilities")); //Loading Gravity Forms if user has access to any functionality if(GFCommon::current_user_can_any(GFCommon::all_caps())) { require_once(GFCommon::get_base_path() . "/export.php"); GFExport::maybe_export(); //runs the setup when version changes self::setup(); //creates the "Forms" left menu add_action('admin_menu', array('RGForms', 'create_menu')); if(GF_SUPPORTED_WP_VERSION){ add_action('admin_footer', array('RGForms', 'check_upload_folder')); add_action('wp_dashboard_setup', array('RGForms', 'dashboard_setup')); //Adding "embed form" button add_action('media_buttons_context', array('RGForms', 'add_form_button')); //Plugin update actions add_filter("transient_update_plugins", array('RGForms', 'check_update')); add_filter("site_transient_update_plugins", array('RGForms', 'check_update')); if(in_array(RG_CURRENT_PAGE, array('post.php', 'page.php', 'page-new.php', 'post-new.php'))){ add_action('admin_footer', array('RGForms', 'add_mce_popup')); } else if(self::is_gravity_page()){ require_once(GFCommon::get_base_path() . "/tooltips.php"); add_action("admin_print_scripts", array('RGForms', 'print_scripts')); } else if(RG_CURRENT_PAGE == 'media-upload.php'){ require_once(GFCommon::get_base_path() . "/entry_list.php"); } else if(in_array(RG_CURRENT_PAGE, array("admin.php", "admin-ajax.php"))){ add_action('wp_ajax_rg_save_form', array('RGForms', 'save_form')); add_action('wp_ajax_rg_change_input_type', array('RGForms', 'change_input_type')); add_action('wp_ajax_rg_add_field', array('RGForms', 'add_field')); add_action('wp_ajax_rg_duplicate_field', array('RGForms', 'duplicate_field')); add_action('wp_ajax_rg_delete_field', array('RGForms', 'delete_field')); add_action('wp_ajax_rg_delete_file', array('RGForms', 'delete_file')); add_action('wp_ajax_rg_select_export_form', array('RGForms', 'select_export_form')); add_action('wp_ajax_rg_start_export', array('RGForms', 'start_export')); add_action('wp_ajax_gf_upgrade_license', array('RGForms', 'upgrade_license')); add_action('wp_ajax_gf_delete_custom_choice', array('RGForms', 'delete_custom_choice')); add_action('wp_ajax_gf_save_custom_choice', array('RGForms', 'save_custom_choice')); add_action('wp_ajax_gf_get_post_categories', array('RGForms', 'get_post_category_values')); add_action('wp_ajax_gf_get_notification_post_categories', array('RGForms', 'get_notification_post_category_values')); //entry list ajax operations add_action('wp_ajax_rg_update_lead_property', array('RGForms', 'update_lead_property')); add_action('wp_ajax_delete-gf_entry', array('RGForms', 'update_lead_status')); //form list ajax operations add_action('wp_ajax_rg_update_form_active', array('RGForms', 'update_form_active')); //dynamic captcha image add_action('wp_ajax_rg_captcha_image', array('RGForms', 'captcha_image')); //dashboard message "dismiss upgrade" link add_action("wp_ajax_rg_dismiss_upgrade", array('RGForms', 'dashboard_dismiss_upgrade')); // entry detial: resend notifications add_action("wp_ajax_gf_resend_notifications", array('RGForms', 'resend_notifications')); } add_filter("plugins_api", array("RGForms", "get_addon_info"), 10, 3); add_action('after_plugin_row_gravityforms/gravityforms.php', array('RGForms', 'plugin_row') ); add_action('install_plugins_pre_plugin-information', array('RGForms', 'display_changelog')); add_filter('plugin_action_links', array('RGForms', 'plugin_settings_link'),10,2); } } } else{ add_action('wp_enqueue_scripts', array('RGForms', 'enqueue_scripts')); add_action('wp', array('RGForms', 'ajax_parse_request'), 10); // ManageWP premium update filters add_filter( 'mwp_premium_update_notification', array('RGForms', 'premium_update_push') ); add_filter( 'mwp_premium_perform_update', array('RGForms', 'premium_update') ); } add_shortcode('gravityform', array('RGForms', 'parse_shortcode')); add_shortcode('gravityforms', array('RGForms', 'parse_shortcode')); } public static function set_logging_supported($plugins) { $plugins["gravityforms"] = "Gravity Forms Core"; return $plugins; } public static function maybe_process_form(){ $form_id = isset($_POST["gform_submit"]) ? $_POST["gform_submit"] : 0; if($form_id){ $form_info = RGFormsModel::get_form($form_id); $is_valid_form = $form_info && $form_info->is_active; if($is_valid_form){ require_once(GFCommon::get_base_path() . "/form_display.php"); GFFormDisplay::process_form($form_id); } } } public static function process_exterior_pages(){ if(rgempty("gf_page", $_GET)) return; //ensure users are logged in if(!is_user_logged_in()) auth_redirect(); switch(rgget("gf_page")){ case "preview": require_once(GFCommon::get_base_path() . "/preview.php"); break; case "print-entry" : require_once(GFCommon::get_base_path() . "/print-entry.php"); break; case "select_columns" : require_once(GFCommon::get_base_path() . "/select_columns.php"); break; } exit(); } public static function check_update($update_plugins_option){ if(!class_exists("GFCommon")) require_once("common.php"); return GFCommon::check_update($update_plugins_option, true); } //Creates or updates database tables. Will only run when version changes public static function setup($force_setup = false){ global $wpdb; $version = GFCommon::$version; if(get_option("rg_form_version") != $version || $force_setup){ $error = ""; if(!self::has_database_permission($error)){ ?>
charset) ) $charset_collate = "DEFAULT CHARACTER SET $wpdb->charset"; if ( ! empty($wpdb->collate) ) $charset_collate .= " COLLATE $wpdb->collate"; //Fixes issue with dbDelta lower-casing table names, which cause problems on case sensitive DB servers. add_filter( 'dbdelta_create_queries', array("RGForms", "dbdelta_fix_case")); //------ FORM ----------------------------------------------- $form_table_name = RGFormsModel::get_form_table_name(); $sql = "CREATE TABLE " . $form_table_name . " ( id mediumint(8) unsigned not null auto_increment, title varchar(150) not null, date_created datetime not null, is_active tinyint(1) not null default 1, PRIMARY KEY (id) ) $charset_collate;"; dbDelta($sql); //droping table that was created by mistake in version 1.6.3.2 $wpdb->query("DROP TABLE IF EXISTS A" . $form_table_name); //------ META ----------------------------------------------- $meta_table_name = RGFormsModel::get_meta_table_name(); $sql = "CREATE TABLE " . $meta_table_name . " ( form_id mediumint(8) unsigned not null, display_meta longtext, entries_grid_meta longtext, PRIMARY KEY (form_id) ) $charset_collate;"; dbDelta($sql); //droping outdated form_id index (if one exists) self::drop_index($meta_table_name, 'form_id'); //------ FORM VIEW ----------------------------------------------- $form_view_table_name = RGFormsModel::get_form_view_table_name(); $sql = "CREATE TABLE " . $form_view_table_name . " ( id bigint(20) unsigned not null auto_increment, form_id mediumint(8) unsigned not null, date_created datetime not null, ip char(15), count mediumint(8) unsigned not null default 1, PRIMARY KEY (id), KEY form_id (form_id) ) $charset_collate;"; dbDelta($sql); //------ LEAD ----------------------------------------------- $lead_table_name = RGFormsModel::get_lead_table_name(); $sql = "CREATE TABLE " . $lead_table_name . " ( id int(10) unsigned not null auto_increment, form_id mediumint(8) unsigned not null, post_id bigint(20) unsigned, date_created datetime not null, is_starred tinyint(1) not null default 0, is_read tinyint(1) not null default 0, ip varchar(39) not null, source_url varchar(200) not null default '', user_agent varchar(250) not null default '', currency varchar(5), payment_status varchar(15), payment_date datetime, payment_amount decimal(19,2), transaction_id varchar(50), is_fulfilled tinyint(1), created_by bigint(20) unsigned, transaction_type tinyint(1), status varchar(20) not null default 'active', PRIMARY KEY (id), KEY form_id (form_id), KEY status (status) ) $charset_collate;"; dbDelta($sql); //------ LEAD NOTES ------------------------------------------ $lead_notes_table_name = RGFormsModel::get_lead_notes_table_name(); $sql = "CREATE TABLE " . $lead_notes_table_name . " ( id int(10) unsigned not null auto_increment, lead_id int(10) unsigned not null, user_name varchar(250), user_id bigint(20), date_created datetime not null, value longtext, PRIMARY KEY (id), KEY lead_id (lead_id), KEY lead_user_key (lead_id,user_id) ) $charset_collate;"; dbDelta($sql); //------ LEAD DETAIL ----------------------------------------- $lead_detail_table_name = RGFormsModel::get_lead_details_table_name(); $sql = "CREATE TABLE " . $lead_detail_table_name . " ( id bigint(20) unsigned not null auto_increment, lead_id int(10) unsigned not null, form_id mediumint(8) unsigned not null, field_number float not null, value varchar(". GFORMS_MAX_FIELD_LENGTH ."), PRIMARY KEY (id), KEY form_id (form_id), KEY lead_id (lead_id) ) $charset_collate;"; dbDelta($sql); //------ LEAD DETAIL LONG ----------------------------------- $lead_detail_long_table_name = RGFormsModel::get_lead_details_long_table_name(); $sql = "CREATE TABLE " . $lead_detail_long_table_name . " ( lead_detail_id bigint(20) unsigned not null, value longtext, PRIMARY KEY (lead_detail_id) ) $charset_collate;"; dbDelta($sql); //droping outdated form_id index (if one exists) self::drop_index($lead_detail_long_table_name, 'lead_detail_key'); //------ LEAD META ----------------------------------- $lead_meta_table_name = RGFormsModel::get_lead_meta_table_name(); $sql = "CREATE TABLE " . $lead_meta_table_name . " ( id bigint(20) unsigned not null auto_increment, lead_id bigint(20) unsigned not null, meta_key varchar(255), meta_value longtext, PRIMARY KEY (id), KEY meta_key (meta_key), KEY lead_id (lead_id) ) $charset_collate;"; dbDelta($sql); remove_filter('dbdelta_create_queries', array("RGForms", "dbdelta_fix_case")); //fix checkbox value. needed for version 1.0 and below but won't hurt for higher versions self::fix_checkbox_value(); //auto-setting license key based on value configured via the GF_LICENSE_KEY constant or the gf_license_key variable global $gf_license_key; $license_key = defined("GF_LICENSE_KEY") && empty($gf_license_key) ? GF_LICENSE_KEY : $gf_license_key; if(!empty($license_key)) update_option("rg_gforms_key", md5($license_key)); //auto-setting recaptcha keys based on value configured via the constant or global variable global $gf_recaptcha_public_key, $gf_recaptcha_private_key; $private_key = defined("GF_RECAPTCHA_PRIVATE_KEY") && empty($gf_recaptcha_private_key) ? GF_RECAPTCHA_PRIVATE_KEY : $gf_recaptcha_private_key; if(!empty($private_key)) update_option("rg_gforms_captcha_private_key", $private_key); $public_key = defined("GF_RECAPTCHA_PUBLIC_KEY") && empty($gf_recaptcha_public_key) ? GF_RECAPTCHA_PUBLIC_KEY : $gf_recaptcha_public_key; if(!empty($public_key)) update_option("rg_gforms_captcha_public_key", $public_key); //Auto-importing forms based on GF_IMPORT_FILE AND GF_THEME_IMPORT_FILE if(defined("GF_IMPORT_FILE") && !get_option("gf_imported_file")){ GFExport::import_file(GF_IMPORT_FILE); update_option("gf_imported_file", true); } //adds empty index.php files to upload folders. only for v1.5.2 and below if(version_compare(get_option("rg_form_version"), "1.6", "<")){ self::add_empty_index_files(); } update_option("rg_form_version", $version); } //Import theme specific forms if configured. Will only import forms once per theme. if(defined("GF_THEME_IMPORT_FILE")){ $themes = get_option("gf_imported_theme_file"); if(!is_array($themes)) $themes = array(); //if current theme has already imported it's forms, don't import again $theme = get_template(); if(!isset($themes[$theme])){ //importing forms GFExport::import_file(get_stylesheet_directory() . "/" . GF_THEME_IMPORT_FILE); //adding current theme to the list of imported themes. So that forms are not imported again for it. $themes[$theme] = true; update_option("gf_imported_theme_file", $themes); } } } public static function dbdelta_fix_case($cqueries){ foreach ($cqueries as $table => $qry) { $table_name = $table; if(preg_match("|CREATE TABLE ([^ ]*)|", $qry, $matches)){ $query_table_name = trim($matches[1], '`' ); //fix table names that are different just by their casing if(strtolower($query_table_name) == $table){ $table_name = $query_table_name; } } $queries[$table_name] = $qry; } return $queries; } public static function no_conflict_mode_style(){ if(!get_option("gform_enable_noconflict")) return; global $wp_styles; $wp_required_styles = array("admin-bar", "colors", "ie", "wp-admin"); $gf_required_styles = array( "common" => array(), "gf_edit_forms" => array("thickbox"), "gf_edit_forms_notification" => array("thickbox", "editor-buttons", "wp-jquery-ui-dialog"), "gf_new_form" => array("thickbox"), "gf_entries" => array("thickbox"), "gf_settings" => array(), "gf_export" => array(), "gf_help" => array() ); self::no_conflict_mode($wp_styles, $wp_required_styles, $gf_required_styles, "styles"); } public static function no_conflict_mode_script(){ if(!get_option("gform_enable_noconflict")) return; global $wp_scripts; $wp_required_scripts = array("admin-bar", "common", "jquery-color", "utils"); $gf_required_scripts = array( "common" => array("qtip-init", "sack"), "gf_edit_forms" => array("thickbox", "jquery-ui-core", "jquery-ui-sortable", "jquery-ui-tabs", "rg_currency", "gforms_gravityforms" ), "gf_edit_forms_notification" => array("editor", "word-count", "quicktags", "wpdialogs-popup", "media-upload", "wplink"), "gf_new_form" => array("thickbox", "jquery-ui-core", "jquery-ui-sortable", "jquery-ui-tabs", "rg_currency", "gforms_gravityforms" ), "gf_entries" => array("thickbox", "gforms_gravityforms"), "gf_settings" => array(), "gf_export" => array(), "gf_help" => array(), ); self::no_conflict_mode($wp_scripts, $wp_required_scripts, $gf_required_scripts, "scripts"); } private static function no_conflict_mode(&$wp_objects, $wp_required_objects, $gf_required_objects, $type="scripts"){ $current_page = trim(strtolower(rgget("page"))); if(empty($current_page)) $current_page = trim(strtolower(rgget("gf_page"))); if(empty($current_page)) $current_page = RG_CURRENT_PAGE; $view = rgempty("view", $_GET) ? "default" : rgget("view"); $page_objects = isset($gf_required_objects[$current_page . "_" . $view]) ? $gf_required_objects[$current_page . "_" . $view] : rgar($gf_required_objects, $current_page); //disable no-conflict if $page_objects is false if($page_objects === false) return; if(!is_array($page_objects)) $page_objects = array(); //merging wp scripts with gravity forms scripts $required_objects = array_merge($wp_required_objects, $gf_required_objects["common"], $page_objects); //allowing addons or other products to change the list of no conflict scripts $required_objects = apply_filters("gform_noconflict_{$type}", $required_objects); $queue = array(); foreach($wp_objects->queue as $object){ if(in_array($object, $required_objects)) $queue[] = $object; } $wp_objects->queue = $queue; $required_objects = self::add_script_dependencies($wp_objects->registered, $required_objects); //unregistering scripts $registered = array(); foreach($wp_objects->registered as $script_name => $script_registration){ if(in_array($script_name, $required_objects)){ $registered[$script_name] = $script_registration; } } $wp_objects->registered = $registered; } private static function add_script_dependencies($registered, $scripts){ //gets all dependent scripts linked to the $scripts array passed do{ $dependents = array(); foreach($scripts as $script){ $deps = isset($registered[$script]) && is_array($registered[$script]->deps) ? $registered[$script]->deps : array(); foreach($deps as $dep){ if(!in_array($dep, $scripts) && !in_array($dep, $dependents)){ $dependents[] = $dep; } } } $scripts = array_merge($scripts, $dependents); }while(!empty($dependents)); return $scripts; } //Integration with ManageWP public static function premium_update_push( $premium_update ){ if( !function_exists( 'get_plugin_data' ) ) include_once( ABSPATH.'wp-admin/includes/plugin.php'); $update = GFCommon::get_version_info(); if( $update["is_valid_key"] == true && version_compare(GFCommon::$version, $update["version"], '<') ){ $gforms = get_plugin_data( __FILE__ ); $gforms['type'] = 'plugin'; $gforms['slug'] = 'gravityforms/gravityforms.php'; $gforms['new_version'] = isset($update['version']) ? $update['version'] : false ; $premium_update[] = $gforms; } return $premium_update; } //Integration with ManageWP public static function premium_update( $premium_update ){ if( !function_exists( 'get_plugin_data' ) ) include_once( ABSPATH.'wp-admin/includes/plugin.php'); $update = GFCommon::get_version_info(); if( $update["is_valid_key"] == true && version_compare(GFCommon::$version, $update["version"], '<') ){ $gforms = get_plugin_data( __FILE__ ); $gforms['slug'] = 'gravityforms/gravityforms.php'; // If not set by default, always pass theme template $gforms['type'] = 'plugin'; $gforms['url'] = isset($update["url"]) ? $update["url"] : false; // OR provide your own callback function for managing the update array_push($premium_update, $gforms); } return $premium_update; } private static function drop_index($table, $index){ global $wpdb; $has_index = $wpdb->get_var("SHOW INDEX FROM {$table} WHERE Key_name='{$index}'"); if($has_index){ $wpdb->query("DROP INDEX {$index} ON {$table}"); } } private static function add_empty_index_files(){ $upload_root = RGFormsModel::get_upload_root(); GFCommon::recursive_add_index_file($upload_root); } private static function has_database_permission(&$error){ global $wpdb; $wpdb->hide_errors(); $has_permission = true; $sql = "CREATE TABLE IF NOT EXISTS {$wpdb->prefix}rg_test ( col1 int )"; $wpdb->query($sql); $error = "Current database user does not have necessary permissions to create tables."; if(!empty($wpdb->last_error)) $has_permission = false; $sql = "ALTER TABLE {$wpdb->prefix}rg_test ADD COLUMN " . uniqid() ." int"; $wpdb->query($sql); $error = "Current database user does not have necessary permissions to modify (ALTER) tables."; if(!empty($wpdb->last_error)) $has_permission = false; $sql = "DROP TABLE {$wpdb->prefix}rg_test"; $wpdb->query($sql); $wpdb->show_errors(); return $has_permission; } //Changes checkbox entry values from "!" to the current choice text. Neededed when upgrading users from 1.0 private static function fix_checkbox_value(){ global $wpdb; $table_name = RGFormsModel::get_lead_details_table_name(); $sql = "select * from $table_name where value= '!'"; $results = $wpdb->get_results($sql); foreach($results as $result){ $form = RGFormsModel::get_form_meta($result->form_id); $field = RGFormsModel::get_field($form, $result->field_number); if($field["type"] == "checkbox"){ $input = GFCommon::get_input($field, $result->field_number); $wpdb->update($table_name, array("value" => $input["label"]), array("id" => $result->id)); } } } public static function user_has_cap($all_caps, $cap, $args){ $gf_caps = GFCommon::all_caps(); $capability = rgar($cap, 0); if($capability != "gform_full_access"){ return $all_caps; } if(!self::has_members_plugin()){ //give full access to administrators if the members plugin is not installed if(current_user_can("administrator") || is_super_admin()){ $all_caps["gform_full_access"] = true; } } else if(current_user_can("administrator")|| is_super_admin()){ //checking if user has any GF permission. $has_gf_cap = false; foreach($gf_caps as $gf_cap){ if(rgar($all_caps, $gf_cap)) $has_gf_cap = true; } if(!$has_gf_cap){ //give full access to administrators if none of the GF permissions are active by the Members plugin $all_caps["gform_full_access"] = true; } } return $all_caps; } //Target of Member plugin filter. Provides the plugin with Gravity Forms lists of capabilities public static function members_get_capabilities( $caps ) { return array_merge($caps, GFCommon::all_caps()); } //Tests if the upload folder is writable and displays an error message if not public static function check_upload_folder(){ //check if upload folder is writable $folder = RGFormsModel::get_upload_root(); if(empty($folder)) echo "