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 | Version: 2.0.2
|
---|
8 | Author URI: http://ideasilo.wordpress.com/
|
---|
9 | */
|
---|
10 |
|
---|
11 | /* Copyright 2007-2009 Takayuki Miyoshi (email: takayukister at gmail.com)
|
---|
12 |
|
---|
13 | This program is free software; you can redistribute it and/or modify
|
---|
14 | it under the terms of the GNU General Public License as published by
|
---|
15 | the Free Software Foundation; either version 2 of the License, or
|
---|
16 | (at your option) any later version.
|
---|
17 |
|
---|
18 | This program is distributed in the hope that it will be useful,
|
---|
19 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
20 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
21 | GNU General Public License for more details.
|
---|
22 |
|
---|
23 | You should have received a copy of the GNU General Public License
|
---|
24 | along with this program; if not, write to the Free Software
|
---|
25 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
---|
26 | */
|
---|
27 |
|
---|
28 | define( 'WPCF7_VERSION', '2.0.2' );
|
---|
29 |
|
---|
30 | if ( ! defined( 'WPCF7_PLUGIN_BASENAME' ) )
|
---|
31 | define( 'WPCF7_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
---|
32 |
|
---|
33 | if ( ! defined( 'WPCF7_PLUGIN_NAME' ) )
|
---|
34 | define( 'WPCF7_PLUGIN_NAME', trim( dirname( WPCF7_PLUGIN_BASENAME ), '/' ) );
|
---|
35 |
|
---|
36 | if ( ! defined( 'WPCF7_PLUGIN_DIR' ) )
|
---|
37 | define( 'WPCF7_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . WPCF7_PLUGIN_NAME );
|
---|
38 |
|
---|
39 | if ( ! defined( 'WPCF7_PLUGIN_URL' ) )
|
---|
40 | define( 'WPCF7_PLUGIN_URL', WP_PLUGIN_URL . '/' . WPCF7_PLUGIN_NAME );
|
---|
41 |
|
---|
42 | if ( ! defined( 'WPCF7_PLUGIN_MODULES_DIR' ) )
|
---|
43 | define( 'WPCF7_PLUGIN_MODULES_DIR', WPCF7_PLUGIN_DIR . '/modules' );
|
---|
44 |
|
---|
45 | if ( ! defined( 'WPCF7_LOAD_JS' ) )
|
---|
46 | define( 'WPCF7_LOAD_JS', true );
|
---|
47 |
|
---|
48 | if ( ! defined( 'WPCF7_LOAD_CSS' ) )
|
---|
49 | define( 'WPCF7_LOAD_CSS', true );
|
---|
50 |
|
---|
51 | if ( ! defined( 'WPCF7_AUTOP' ) )
|
---|
52 | define( 'WPCF7_AUTOP', true );
|
---|
53 |
|
---|
54 | if ( ! defined( 'WPCF7_USE_PIPE' ) )
|
---|
55 | define( 'WPCF7_USE_PIPE', true );
|
---|
56 |
|
---|
57 | /* If you or your client hate to see about donation, set this value false. */
|
---|
58 | if ( ! defined( 'WPCF7_SHOW_DONATION_LINK' ) )
|
---|
59 | define( 'WPCF7_SHOW_DONATION_LINK', true );
|
---|
60 |
|
---|
61 | if ( ! defined( 'WPCF7_ADMIN_READ_CAPABILITY' ) )
|
---|
62 | define( 'WPCF7_ADMIN_READ_CAPABILITY', 'edit_posts' );
|
---|
63 |
|
---|
64 | if ( ! defined( 'WPCF7_ADMIN_READ_WRITE_CAPABILITY' ) )
|
---|
65 | define( 'WPCF7_ADMIN_READ_WRITE_CAPABILITY', 'publish_pages' );
|
---|
66 |
|
---|
67 | require_once WPCF7_PLUGIN_DIR . '/settings.php';
|
---|
68 |
|
---|
69 | ?>
|
---|