# sureforms/0.0.5/sureforms.php

SureForms – Contact Form Builder, AI Forms, Payment Form, Survey &amp; Quiz, version 0.0.5. 33 lines.

- Page: https://pluginprobe.com/plugins/sureforms/0.0.5/code/sureforms.php
- Raw: https://pluginprobe.com/plugins/sureforms/0.0.5/raw/sureforms.php
- Modified: 2024-06-19T08:26:38+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/sureforms/0.0.5/code/sureforms.php#L10-L20`.

```php
<?php
/**
 * Plugin Name: SureForms
 * Plugin URI: https://www.brainstormforce.com
 * Description: A simple yet powerful way to create modern forms for your website.
 * Author: SureForms
 * Author URI: https://brainstormforce.com/
 * Version: 0.0.5
 * License: GPLv2 or later
 * Text Domain: sureforms
 *
 * @package sureforms
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Set constants
 */
define( 'SRFM_FILE', __FILE__ );
define( 'SRFM_BASENAME', plugin_basename( SRFM_FILE ) );
define( 'SRFM_DIR', plugin_dir_path( SRFM_FILE ) );
define( 'SRFM_URL', plugins_url( '/', SRFM_FILE ) );
define( 'SRFM_VER', '0.0.5' );
define( 'SRFM_SLUG', 'srfm' );
// ------ ADDITIONAL CONSTANTS ------- //
define( 'SRFM_FORMS_POST_TYPE', 'sureforms_form' );
define( 'SRFM_ENTRIES_POST_TYPE', 'sureforms_entry' );

require_once 'plugin-loader.php';

```
