wp-contact-form-7.php
1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
/*
Plugin Name: Contact Form 7
Plugin URI: http://contactform7.com/
Description: Just another contact form plugin. Simple but flexible.
Author: Takayuki Miyoshi
Author URI: http://ideasilo.wordpress.com/
Text Domain: wpcf7
Domain Path: /languages/
Version: 3.4.1
*/
define( 'WPCF7_VERSION', '3.4.1' );
define( 'WPCF7_REQUIRED_WP_VERSION', '3.5' );
if ( ! defined( 'WPCF7_PLUGIN_BASENAME' ) )
define( 'WPCF7_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
if ( ! defined( 'WPCF7_PLUGIN_NAME' ) )
define( 'WPCF7_PLUGIN_NAME', trim( dirname( WPCF7_PLUGIN_BASENAME ), '/' ) );
if ( ! defined( 'WPCF7_PLUGIN_DIR' ) )
define( 'WPCF7_PLUGIN_DIR', untrailingslashit( dirname( __FILE__ ) ) );
if ( ! defined( 'WPCF7_PLUGIN_URL' ) )
define( 'WPCF7_PLUGIN_URL', untrailingslashit( plugins_url( '', __FILE__ ) ) );
if ( ! defined( 'WPCF7_PLUGIN_MODULES_DIR' ) )
define( 'WPCF7_PLUGIN_MODULES_DIR', WPCF7_PLUGIN_DIR . '/modules' );
if ( ! defined( 'WPCF7_LOAD_JS' ) )
define( 'WPCF7_LOAD_JS', true );
if ( ! defined( 'WPCF7_LOAD_CSS' ) )
define( 'WPCF7_LOAD_CSS', true );
if ( ! defined( 'WPCF7_AUTOP' ) )
define( 'WPCF7_AUTOP', true );
if ( ! defined( 'WPCF7_USE_PIPE' ) )
define( 'WPCF7_USE_PIPE', true );
/* If you or your client hate to see about donation, set this value false. */
if ( ! defined( 'WPCF7_SHOW_DONATION_LINK' ) )
define( 'WPCF7_SHOW_DONATION_LINK', true );
if ( ! defined( 'WPCF7_ADMIN_READ_CAPABILITY' ) )
define( 'WPCF7_ADMIN_READ_CAPABILITY', 'edit_posts' );
if ( ! defined( 'WPCF7_ADMIN_READ_WRITE_CAPABILITY' ) )
define( 'WPCF7_ADMIN_READ_WRITE_CAPABILITY', 'publish_pages' );
if ( ! defined( 'WPCF7_VERIFY_NONCE' ) )
define( 'WPCF7_VERIFY_NONCE', true );
require_once WPCF7_PLUGIN_DIR . '/settings.php';
?>