PluginProbe
Smart Forms – when you need more than just a contact form / trunk
Smart Forms – when you need more than just a contact form vtrunk
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 trunk, at smart-forms-config.php

31 lines 1.1 KB
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_ENTRY_DETAIL',$wpdb->prefix . "rednao_smart_forms_entry_detail");
22 define('SMART_FORMS_UPLOADED_FILES',$wpdb->prefix . "rednao_smart_forms_uploaded_files");
23 define('SMART_FORMS_LATEST_DB_VERSION',27);
24 define('SMART_FORMS_REDNAO_URL',"http://smartforms.rednao.com/");
25 define('SMART_FORMS_API',SMART_FORMS_DIR.'php_classes/api/query/QueryApi.php');
26 define('SECURE_SMART_FORMS_REDNAO_URL',"http://smartforms.rednao.com/");
27 define('SMART_FORMS_SANDBOX','n');
28 define('SMART_FORMS_FILE_VERSION','5');
29
30
31 ?>