# smart-forms/0.7/smart-forms-config.php

Smart Forms – when you need more than just a contact form, version 0.7. 26 lines.

- Page: https://pluginprobe.com/plugins/smart-forms/0.7/code/smart-forms-config.php
- Raw: https://pluginprobe.com/plugins/smart-forms/0.7/raw/smart-forms-config.php
- Modified: 2013-12-16T00:14:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/smart-forms/0.7/code/smart-forms-config.php#L10-L20`.

```php
<?php
/**
 * Created by JetBrains PhpStorm.
 * User: edseventeen
 * Date: 3/29/13
 * Time: 9:29 AM
 * To change this template use File | Settings | File Templates.
 * Thanks to:
 * Liam McKay (http://wefunction.com/contact/)
 */

global $wpdb;
if(!defined('ABSPATH'))
    die('Forbidden');

define('SMART_FORMS_PLUGIN_NAME',dirname(plugin_basename(__FILE__)));
define('SMART_FORMS_DIR',WP_PLUGIN_DIR.'/'.SMART_FORMS_PLUGIN_NAME.'/');
define('SMART_FORMS_DIR_URL',plugin_dir_url(__FILE__));
define('SMART_FORMS_TABLE_NAME',$wpdb->prefix . "rednao_smart_forms_table_name");
define('SMART_FORMS_ENTRY',$wpdb->prefix . "rednao_smart_forms_entry");
define('SMART_FORMS_LATEST_DB_VERSION',4);
define('SMART_FORMS_REDNAO_URL',"http://rednao.com/");



?>
```
