PluginProbe
Smart Forms – when you need more than just a contact form / 0.6
Smart Forms – when you need more than just a contact form v0.6
trunk 0.5 0.5.5 0.6 0.7 0.8 0.8.5 0.9.1
smart-forms / smart-forms-config.php

smart-forms-config.php in Smart Forms – when you need more than just a contact form 0.6, at smart-forms-config.php

26 lines 747 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Created by JetBrains PhpStorm.
4 * User: edseventeen
5 * Date: 3/29/13
6 * Time: 9:29 AM
7 * To change this template use File | Settings | File Templates.
8 * Thanks to:
9 * Liam McKay (http://wefunction.com/contact/)
10 */
11
12 global $wpdb;
13 if(!defined('ABSPATH'))
14 die('Forbidden');
15
16 define('SMART_FORMS_PLUGIN_NAME',dirname(plugin_basename(__FILE__)));
17 define('SMART_FORMS_DIR',WP_PLUGIN_DIR.'/'.SMART_FORMS_PLUGIN_NAME.'/');
18 define('SMART_FORMS_DIR_URL',plugin_dir_url(__FILE__));
19 define('SMART_FORMS_TABLE_NAME',$wpdb->prefix . "rednao_smart_forms_table_name");
20 define('SMART_FORMS_ENTRY',$wpdb->prefix . "rednao_smart_forms_entry");
21 define('SMART_FORMS_LATEST_DB_VERSION',4);
22 define('SMART_FORMS_REDNAO_URL',"http://rednao.com/");
23
24
25
26 ?>