Files
medicalalert-web-reloaded/wp/wp-content/plugins/wp-mail-smtp/src/Compatibility/Plugin/WPForms.php
2024-03-01 15:36:30 +00:00

36 lines
435 B
PHP

<?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';
}
}