contact-form-7
Last commit date
admin
11 years ago
images
14 years ago
includes
11 years ago
languages
11 years ago
modules
11 years ago
license.txt
16 years ago
readme.txt
11 years ago
settings.php
11 years ago
uninstall.php
14 years ago
wp-contact-form-7.php
11 years ago
wp-contact-form-7.php
67 lines
| 1 | <?php |
| 2 | /* |
| 3 | Plugin Name: Contact Form 7 |
| 4 | Plugin URI: http://contactform7.com/ |
| 5 | Description: Just another contact form plugin. Simple but flexible. |
| 6 | Author: Takayuki Miyoshi |
| 7 | Author URI: http://ideasilo.wordpress.com/ |
| 8 | Text Domain: contact-form-7 |
| 9 | Domain Path: /languages/ |
| 10 | Version: 3.9.2 |
| 11 | */ |
| 12 | |
| 13 | /* Copyright 2007-2014 Takayuki Miyoshi (email: takayukister at gmail.com) |
| 14 | |
| 15 | This program is free software; you can redistribute it and/or modify |
| 16 | it under the terms of the GNU General Public License as published by |
| 17 | the Free Software Foundation; either version 2 of the License, or |
| 18 | (at your option) any later version. |
| 19 | |
| 20 | This program is distributed in the hope that it will be useful, |
| 21 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 22 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 23 | GNU General Public License for more details. |
| 24 | |
| 25 | You should have received a copy of the GNU General Public License |
| 26 | along with this program; if not, write to the Free Software |
| 27 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 28 | */ |
| 29 | |
| 30 | define( 'WPCF7_VERSION', '3.9.2' ); |
| 31 | |
| 32 | define( 'WPCF7_REQUIRED_WP_VERSION', '3.8' ); |
| 33 | |
| 34 | define( 'WPCF7_PLUGIN_BASENAME', plugin_basename( __FILE__ ) ); |
| 35 | |
| 36 | define( 'WPCF7_PLUGIN_NAME', trim( dirname( WPCF7_PLUGIN_BASENAME ), '/' ) ); |
| 37 | |
| 38 | define( 'WPCF7_PLUGIN_DIR', untrailingslashit( dirname( __FILE__ ) ) ); |
| 39 | |
| 40 | define( 'WPCF7_PLUGIN_URL', untrailingslashit( plugins_url( '', __FILE__ ) ) ); |
| 41 | |
| 42 | define( 'WPCF7_PLUGIN_MODULES_DIR', WPCF7_PLUGIN_DIR . '/modules' ); |
| 43 | |
| 44 | if ( ! defined( 'WPCF7_LOAD_JS' ) ) |
| 45 | define( 'WPCF7_LOAD_JS', true ); |
| 46 | |
| 47 | if ( ! defined( 'WPCF7_LOAD_CSS' ) ) |
| 48 | define( 'WPCF7_LOAD_CSS', true ); |
| 49 | |
| 50 | if ( ! defined( 'WPCF7_AUTOP' ) ) |
| 51 | define( 'WPCF7_AUTOP', true ); |
| 52 | |
| 53 | if ( ! defined( 'WPCF7_USE_PIPE' ) ) |
| 54 | define( 'WPCF7_USE_PIPE', true ); |
| 55 | |
| 56 | if ( ! defined( 'WPCF7_ADMIN_READ_CAPABILITY' ) ) |
| 57 | define( 'WPCF7_ADMIN_READ_CAPABILITY', 'edit_posts' ); |
| 58 | |
| 59 | if ( ! defined( 'WPCF7_ADMIN_READ_WRITE_CAPABILITY' ) ) |
| 60 | define( 'WPCF7_ADMIN_READ_WRITE_CAPABILITY', 'publish_pages' ); |
| 61 | |
| 62 | if ( ! defined( 'WPCF7_VERIFY_NONCE' ) ) |
| 63 | define( 'WPCF7_VERIFY_NONCE', true ); |
| 64 | |
| 65 | require_once WPCF7_PLUGIN_DIR . '/settings.php'; |
| 66 | |
| 67 | ?> |