• File: WPForms.php
  • Full Path: /home/atelipy/www/wpmain/plugins/wp-mail-smtp/src/Compatibility/Plugin/WPForms.php
  • File size: 435 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace WPMailSMTP\Compatibility\Plugin;

/**
 * WPForms compatibility plugin.
 *
 * @since 4.0.0
 */
class WPForms extends WPFormsLite {

	/**
	 * Get plugin name.
	 *
	 * @since 4.0.0
	 *
	 * @return string
	 */
	public static function get_name() {

		return 'WPForms';
	}

	/**
	 * Get plugin path.
	 *
	 * @since 4.0.0
	 *
	 * @return string
	 */
	public static function get_path() {

		return 'wpforms/wpforms.php';
	}
}