# propertyhive/1.4.59/includes/class-ph-form-handler.php

Property Hive, version 1.4.59. 42 lines.

- Page: https://pluginprobe.com/plugins/propertyhive/1.4.59/code/includes/class-ph-form-handler.php
- Raw: https://pluginprobe.com/plugins/propertyhive/1.4.59/raw/includes/class-ph-form-handler.php
- Modified: 2015-11-30T09:44:04+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/propertyhive/1.4.59/code/includes/class-ph-form-handler.php#L10-L20`.

```php
<?php

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

/**
 * Handle frontend form submissions
 *
 * @class 		PH_Form_Handler
 * @version		1.0.0
 * @package		PropertyHive/Classes/
 * @category	Class
 * @author 		PropertyHive
 */
class PH_Form_Handler {

	/**
	 * Hook in methods
	 */
	public static function init() {
		//add_action( 'init', array( __CLASS__, 'process_login' ) );
		//add_action( 'init', array( __CLASS__, 'process_registration' ) );
	}

	/**
	 * Process the login form.
	 */
	public static function process_login() {
		
	}

	/**
	 * Process the registration form.
	 */
	public static function process_registration() {
		
	}
}

PH_Form_Handler::init();

```
