get_registered_stylesheets(); return in_array($stylesheet, $stylesheets, true); } /** * @return array */ public function get_registered_stylesheets() { return array( 'basic', 'themes', ); } /** * @param string $stylesheet * * @return string */ public function get_stylesheet_url($stylesheet) { return mc4wp_plugin_url('assets/css/form-' . $stylesheet . '.css'); } /** * Get array of stylesheet handles which should be enqueued. * * @return array */ public function get_active_stylesheets() { $stylesheets = (array) get_option('mc4wp_form_stylesheets', array()); /** * Filters the stylesheets to be loaded * * Should be an array of stylesheet handles previously registered using `wp_register_style`. * Each value is prefixed with `mc4wp-form-` to get the handle. * * Return an empty array if you want to disable the loading of all stylesheets. * * @since 3.0 * @param array $stylesheets Array of valid stylesheet handles */ $stylesheets = (array) apply_filters('mc4wp_form_stylesheets', $stylesheets); return $stylesheets; } /** * Load the various stylesheets */ public function load_stylesheets() { $stylesheets = $this->get_active_stylesheets(); foreach ($stylesheets as $stylesheet) { if (! $this->is_registered_stylesheet($stylesheet)) { continue; } $handle = 'mc4wp-form-' . $stylesheet; $url = $this->get_stylesheet_url($stylesheet); wp_enqueue_style($handle, $url, array(), MC4WP_VERSION); add_editor_style($url); } /** * @ignore */ do_action('mc4wp_load_form_stylesheets', $stylesheets); } /** * Get data object for client-side use for after a form is submitted over HTTP POST (not AJAX). * * @return array */ public function get_submitted_form_data() { $submitted_form = mc4wp_get_submitted_form(); if (! $submitted_form instanceof MC4WP_Form) { return null; } $data = array( 'id' => $submitted_form->ID, 'event' => $submitted_form->last_event, 'data' => $submitted_form->get_data(), 'element_id' => $submitted_form->config['element_id'], 'auto_scroll' => true, ); if ($submitted_form->has_errors()) { $data['errors'] = $submitted_form->errors; } /** * Filters the `auto_scroll` setting for when a form is submitted. * Set to false to disable scrolling to form. * * @param boolean $auto_scroll * @since 3.0 */ $data['auto_scroll'] = apply_filters('mc4wp_form_auto_scroll', $data['auto_scroll']); return $data; } /** * Load JavaScript files */ public function before_output_form() { $load_scripts = apply_filters('mc4wp_load_form_scripts', true); if (! $load_scripts) { return; } $this->print_dummy_javascript(); $this->load_scripts = true; } /** * Prints dummy JavaScript which allows people to call `mc4wp.forms.on()` before the JS is loaded. */ public function print_dummy_javascript() { echo ''; } /** * Outputs the inline JavaScript that is used to enhance forms */ public function load_scripts() { $load_scripts = apply_filters('mc4wp_load_form_scripts', $this->load_scripts); if (! $load_scripts) { return; } // load general client-side form API wp_enqueue_script('mc4wp-forms-api'); // maybe load JS file for when a form was submitted over HTTP POST $submitted_form_data = $this->get_submitted_form_data(); if ($submitted_form_data !== null) { wp_enqueue_script('mc4wp-forms-submitted', mc4wp_plugin_url('assets/js/forms-submitted.js'), array( 'mc4wp-forms-api' ), MC4WP_VERSION, true); wp_localize_script('mc4wp-forms-submitted', 'mc4wp_submitted_form', $submitted_form_data); } // print inline scripts echo ''; /** @ignore */ do_action('mc4wp_load_form_scripts'); } /** * Adds `defer` attribute to all form-related `