PHP 8.2.31
Preview: class-templates.php Size: 1.26 KB
//home/nshryvcy/himaltourism.com/wp-content/plugins/wpforms-lite/includes/class-templates.php

<?php

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Pre-configured packaged templates.
 *
 * @since 1.0.0
 */
class WPForms_Templates {

	/**
	 * Primary class constructor.
	 *
	 * @since 1.0.0
	 */
	public function __construct() {

		$this->init();
	}

	/**
	 * Load and init the base form template class.
	 *
	 * @since 1.2.8
	 */
	public function init() {

		// Parent class template.
		require_once WPFORMS_PLUGIN_DIR . 'includes/templates/class-base.php';

		// Load default templates on WP init.
		add_action( 'init', [ $this, 'load' ] );
	}

	/**
	 * Load default form templates.
	 *
	 * @since 1.0.0
	 */
	public function load() {

		$templates = apply_filters(
			'wpforms_load_templates',
			[
				'blank',
				'simple-contact-form',
			]
		);

		foreach ( $templates as $template ) {

			$template = sanitize_file_name( $template );

			if ( file_exists( WPFORMS_PLUGIN_DIR . 'includes/templates/class-' . $template . '.php' ) ) {
				require_once WPFORMS_PLUGIN_DIR . 'includes/templates/class-' . $template . '.php';
			} elseif ( file_exists( WPFORMS_PLUGIN_DIR . 'pro/includes/templates/class-' . $template . '.php' ) && wpforms()->is_pro() ) {
				require_once WPFORMS_PLUGIN_DIR . 'pro/includes/templates/class-' . $template . '.php';
			}
		}
	}
}

new WPForms_Templates;

Directory Contents

Dirs: 6 × Files: 12

Name Size Perms Modified Actions
admin DIR
- drwxr-xr-x 2025-01-05 05:34:51
Edit Download
emails DIR
- drwxr-xr-x 2025-01-05 05:34:51
Edit Download
fields DIR
- drwxr-xr-x 2025-01-05 05:34:51
Edit Download
functions DIR
- drwxr-xr-x 2025-01-05 05:34:51
Edit Download
providers DIR
- drwxr-xr-x 2025-01-05 05:34:51
Edit Download
templates DIR
- drwxr-xr-x 2025-01-05 05:34:51
Edit Download
22.50 KB lrw-r--r-- 2025-01-05 05:34:51
Edit Download
1.91 KB lrw-r--r-- 2025-01-05 05:34:51
Edit Download
38.60 KB lrw-r--r-- 2025-01-05 05:34:51
Edit Download
5.56 KB lrw-r--r-- 2025-01-05 05:34:51
Edit Download
59.34 KB lrw-r--r-- 2025-01-05 05:34:51
Edit Download
1.16 KB lrw-r--r-- 2025-01-05 05:34:51
Edit Download
1.26 KB lrw-r--r-- 2025-01-05 05:34:51
Edit Download
6.00 KB lrw-r--r-- 2025-01-05 05:34:51
Edit Download
12.12 KB lrw-r--r-- 2025-01-05 05:34:51
Edit Download
152 B lrw-r--r-- 2025-01-05 05:34:51
Edit Download
1.08 KB lrw-r--r-- 2025-01-05 05:34:51
Edit Download
2.92 KB lrw-r--r-- 2025-01-05 05:34:51
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).