X7ROOT File Manager
Current Path:
/home/notabjze/caribbeansee.com/wp-content/plugins/contact-form-7/includes
home
/
notabjze
/
caribbeansee.com
/
wp-content
/
plugins
/
contact-form-7
/
includes
/
ðŸ“
..
ðŸ“
block-editor
📄
capabilities.php
(834 B)
ðŸ“
config-validator
📄
config-validator.php
(24.61 KB)
📄
contact-form-functions.php
(10.25 KB)
📄
contact-form-template.php
(5.69 KB)
📄
contact-form.php
(30.53 KB)
📄
controller.php
(3.14 KB)
ðŸ“
css
📄
file.php
(10.2 KB)
📄
form-tag.php
(13.42 KB)
📄
form-tags-manager.php
(14.23 KB)
📄
formatting.php
(12.48 KB)
📄
functions.php
(15.53 KB)
📄
html-formatter.php
(16.32 KB)
📄
integration.php
(8.75 KB)
ðŸ“
js
📄
l10n.php
(3.37 KB)
📄
mail-tag.php
(4.1 KB)
📄
mail.php
(14.6 KB)
📄
pipe.php
(2.57 KB)
📄
pocket-holder.php
(325 B)
📄
rest-api.php
(12.88 KB)
📄
shortcodes.php
(2.65 KB)
📄
special-mail-tags.php
(6.07 KB)
📄
submission.php
(20.28 KB)
ðŸ“
swv
📄
upgrade.php
(3 KB)
📄
validation-functions.php
(6.29 KB)
📄
validation.php
(3.22 KB)
Editing: controller.php
<?php /** * Controller for front-end requests, scripts, and styles */ add_action( 'parse_request', 'wpcf7_control_init', 20, 0 ); /** * Handles a submission in non-Ajax mode. */ function wpcf7_control_init() { if ( WPCF7_Submission::is_restful() ) { return; } if ( isset( $_POST['_wpcf7'] ) ) { $contact_form = wpcf7_contact_form( (int) $_POST['_wpcf7'] ); if ( $contact_form ) { $contact_form->submit(); } } } /** * Registers main scripts and styles. */ add_action( 'wp_enqueue_scripts', static function () { $assets = array(); $asset_file = wpcf7_plugin_path( 'includes/js/index.asset.php' ); if ( file_exists( $asset_file ) ) { $assets = include( $asset_file ); } $assets = wp_parse_args( $assets, array( 'dependencies' => array(), 'version' => WPCF7_VERSION, ) ); wp_register_script( 'contact-form-7', wpcf7_plugin_url( 'includes/js/index.js' ), array_merge( $assets['dependencies'], array( 'swv' ) ), $assets['version'], array( 'in_footer' => true ) ); wp_set_script_translations( 'contact-form-7', 'contact-form-7' ); wp_register_script( 'contact-form-7-html5-fallback', wpcf7_plugin_url( 'includes/js/html5-fallback.js' ), array( 'jquery-ui-datepicker' ), WPCF7_VERSION, array( 'in_footer' => true ) ); if ( wpcf7_load_js() ) { wpcf7_enqueue_scripts(); } wp_register_style( 'contact-form-7', wpcf7_plugin_url( 'includes/css/styles.css' ), array(), WPCF7_VERSION, 'all' ); wp_register_style( 'contact-form-7-rtl', wpcf7_plugin_url( 'includes/css/styles-rtl.css' ), array( 'contact-form-7' ), WPCF7_VERSION, 'all' ); wp_register_style( 'jquery-ui-smoothness', wpcf7_plugin_url( 'includes/js/jquery-ui/themes/smoothness/jquery-ui.min.css' ), array(), '1.12.1', 'screen' ); if ( wpcf7_load_css() ) { wpcf7_enqueue_styles(); } }, 10, 0 ); /** * Enqueues scripts. */ function wpcf7_enqueue_scripts() { wp_enqueue_script( 'contact-form-7' ); $wpcf7 = array( 'api' => array( 'root' => sanitize_url( get_rest_url() ), 'namespace' => 'contact-form-7/v1', ), ); if ( defined( 'WP_CACHE' ) and WP_CACHE ) { $wpcf7['cached'] = 1; } wp_localize_script( 'contact-form-7', 'wpcf7', $wpcf7 ); do_action( 'wpcf7_enqueue_scripts' ); } /** * Returns true if the main script is enqueued. */ function wpcf7_script_is() { return wp_script_is( 'contact-form-7' ); } /** * Enqueues styles. */ function wpcf7_enqueue_styles() { wp_enqueue_style( 'contact-form-7' ); if ( wpcf7_is_rtl() ) { wp_enqueue_style( 'contact-form-7-rtl' ); } do_action( 'wpcf7_enqueue_styles' ); } /** * Returns true if the main stylesheet is enqueued. */ function wpcf7_style_is() { return wp_style_is( 'contact-form-7' ); } add_action( 'wp_enqueue_scripts', 'wpcf7_html5_fallback', 20, 0 ); /** * Enqueues scripts and styles for the HTML5 fallback. */ function wpcf7_html5_fallback() { if ( ! wpcf7_support_html5_fallback() ) { return; } if ( wpcf7_script_is() ) { wp_enqueue_script( 'contact-form-7-html5-fallback' ); } if ( wpcf7_style_is() ) { wp_enqueue_style( 'jquery-ui-smoothness' ); } }
Upload File
Create Folder