Submit
Path:
~
/
/
proc
/
thread-self
/
root
/
home
/
getwphos
/
www
/
ppine
/
wp-content
/
themes
/
takeout
/
plugins
/
contact-form-7
/
File Content:
contact-form-7.php
<?php /* Contact Form 7 support functions ------------------------------------------------------------------------------- */ // Theme init priorities: // 9 - register other filters (for installer, etc.) if ( ! function_exists( 'takeout_cf7_theme_setup9' ) ) { add_action( 'after_setup_theme', 'takeout_cf7_theme_setup9', 9 ); function takeout_cf7_theme_setup9() { if ( takeout_exists_cf7() ) { add_action( 'wp_enqueue_scripts', 'takeout_cf7_frontend_scripts', 1100 ); add_action( 'trx_addons_action_load_scripts_front_cf7', 'takeout_cf7_frontend_scripts', 10, 1 ); add_filter( 'takeout_filter_merge_styles', 'takeout_cf7_merge_styles' ); add_filter( 'takeout_filter_merge_scripts', 'takeout_cf7_merge_scripts' ); } if ( is_admin() ) { add_filter( 'takeout_filter_tgmpa_required_plugins', 'takeout_cf7_tgmpa_required_plugins' ); add_filter( 'takeout_filter_theme_plugins', 'takeout_cf7_theme_plugins' ); } } } // Filter to add in the required plugins list if ( ! function_exists( 'takeout_cf7_tgmpa_required_plugins' ) ) { //Handler of the add_filter('takeout_filter_tgmpa_required_plugins', 'takeout_cf7_tgmpa_required_plugins'); function takeout_cf7_tgmpa_required_plugins( $list = array() ) { if ( takeout_storage_isset( 'required_plugins', 'contact-form-7' ) && takeout_storage_get_array( 'required_plugins', 'contact-form-7', 'install' ) !== false ) { // CF7 plugin $list[] = array( 'name' => takeout_storage_get_array( 'required_plugins', 'contact-form-7', 'title' ), 'slug' => 'contact-form-7', 'required' => false, ); } return $list; } } // Filter theme-supported plugins list if ( ! function_exists( 'takeout_cf7_theme_plugins' ) ) { //Handler of the add_filter( 'takeout_filter_theme_plugins', 'takeout_cf7_theme_plugins' ); function takeout_cf7_theme_plugins( $list = array() ) { return takeout_add_group_and_logo_to_slave( $list, 'contact-form-7', 'contact-form-7-' ); } } // Check if cf7 installed and activated if ( ! function_exists( 'takeout_exists_cf7' ) ) { function takeout_exists_cf7() { return class_exists( 'WPCF7' ); } } // Enqueue custom scripts if ( ! function_exists( 'takeout_cf7_frontend_scripts' ) ) { //Handler of the add_action( 'wp_enqueue_scripts', 'takeout_cf7_frontend_scripts', 1100 ); //Handler of the add_action( 'trx_addons_action_load_scripts_front_cf7', 'takeout_cf7_frontend_scripts', 10, 1 ); function takeout_cf7_frontend_scripts( $force = false ) { takeout_enqueue_optimized( 'cf7', $force, array( 'css' => array( 'takeout-contact-form-7' => array( 'src' => 'plugins/contact-form-7/contact-form-7.css' ), ), 'js' => array( 'takeout-contact-form-7' => array( 'src' => 'plugins/contact-form-7/contact-form-7.js', 'deps' => array( 'jquery' ) ), ) ) ); } } // Merge custom styles if ( ! function_exists( 'takeout_cf7_merge_styles' ) ) { //Handler of the add_filter('takeout_filter_merge_styles', 'takeout_cf7_merge_styles'); function takeout_cf7_merge_styles( $list ) { $list[ 'plugins/contact-form-7/contact-form-7.css' ] = false; return $list; } } // Merge custom scripts if ( ! function_exists( 'takeout_cf7_merge_scripts' ) ) { //Handler of the add_filter('takeout_filter_merge_scripts', 'takeout_cf7_merge_scripts'); function takeout_cf7_merge_scripts( $list ) { $list[ 'plugins/contact-form-7/contact-form-7.js' ] = false; return $list; } } // Add plugin-specific colors and fonts to the custom CSS if ( takeout_exists_cf7() ) { $takeout_fdir = takeout_get_file_dir( 'plugins/contact-form-7/contact-form-7-style.php' ); if ( ! empty( $takeout_fdir ) ) { require_once $takeout_fdir; } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
contact-form-7.js
2597 bytes
0644
contact-form-7.php
3666 bytes
0644
contact-form-7.png
251 bytes
0644
contact-form-7@2x.png
373 bytes
0644
N4ST4R_ID | Naxtarrr