source: trunk/www.guidonia.net/wp/wp-content/plugins/contact-form-7/wp-contact-form-7.php@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 2.3 KB
Line 
1<?php
2/*
3Plugin Name: Contact Form 7
4Plugin URI: http://contactform7.com/
5Description: Just another contact form plugin. Simple but flexible.
6Author: Takayuki Miyoshi
7Version: 2.0.2
8Author 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
28define( 'WPCF7_VERSION', '2.0.2' );
29
30if ( ! defined( 'WPCF7_PLUGIN_BASENAME' ) )
31 define( 'WPCF7_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
32
33if ( ! defined( 'WPCF7_PLUGIN_NAME' ) )
34 define( 'WPCF7_PLUGIN_NAME', trim( dirname( WPCF7_PLUGIN_BASENAME ), '/' ) );
35
36if ( ! defined( 'WPCF7_PLUGIN_DIR' ) )
37 define( 'WPCF7_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . WPCF7_PLUGIN_NAME );
38
39if ( ! defined( 'WPCF7_PLUGIN_URL' ) )
40 define( 'WPCF7_PLUGIN_URL', WP_PLUGIN_URL . '/' . WPCF7_PLUGIN_NAME );
41
42if ( ! defined( 'WPCF7_PLUGIN_MODULES_DIR' ) )
43 define( 'WPCF7_PLUGIN_MODULES_DIR', WPCF7_PLUGIN_DIR . '/modules' );
44
45if ( ! defined( 'WPCF7_LOAD_JS' ) )
46 define( 'WPCF7_LOAD_JS', true );
47
48if ( ! defined( 'WPCF7_LOAD_CSS' ) )
49 define( 'WPCF7_LOAD_CSS', true );
50
51if ( ! defined( 'WPCF7_AUTOP' ) )
52 define( 'WPCF7_AUTOP', true );
53
54if ( ! 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. */
58if ( ! defined( 'WPCF7_SHOW_DONATION_LINK' ) )
59 define( 'WPCF7_SHOW_DONATION_LINK', true );
60
61if ( ! defined( 'WPCF7_ADMIN_READ_CAPABILITY' ) )
62 define( 'WPCF7_ADMIN_READ_CAPABILITY', 'edit_posts' );
63
64if ( ! defined( 'WPCF7_ADMIN_READ_WRITE_CAPABILITY' ) )
65 define( 'WPCF7_ADMIN_READ_WRITE_CAPABILITY', 'publish_pages' );
66
67require_once WPCF7_PLUGIN_DIR . '/settings.php';
68
69?>
Note: See TracBrowser for help on using the repository browser.