index of
/
home
/
thefkyzp
/
easyloanly.com
/
wp-content
/
plugins
/
forminator
/
library
/
File: /home/thefkyzp/easyloanly.com/wp-content/plugins/forminator/library/class-form-fields.php
<?php if ( ! defined( 'ABSPATH' ) ) { die(); } /** * Class Forminator_Fields * * @since 1.0 */ class Forminator_Fields { /** * Store fields objects * * @var array */ public $fields = array(); /** * Forminator_Fields constructor. * * @since 1.0 */ public function __construct() { $this->load_forminator_autofill_providers(); $this->maybe_load_external_autofill_providers(); $loader = new Forminator_Loader(); $fields = $loader->load_files( 'library/fields', array( 'stripe.php' => array( 'php' => '5.6.0', ), ) ); /** * Filters the form fields */ $this->fields = apply_filters( 'forminator_fields', $fields ); add_action( 'init', array( &$this, 'schedule_forminator_daily_cron' ) ); add_action( 'forminator_daily_cron', array( &$this, 'cron_init' ) ); add_action( 'forminator_update_version', array( &$this, 'upgrade_actions' ), 10, 2 ); } /** * Retrieve fields objects * * @since 1.0 * @return array */ public function get_fields() { return $this->fields; } /** * Load autofill providers requirements * * @since 1.0.5 */ public function load_forminator_autofill_providers() { include_once forminator_plugin_dir() . 'library/class-autofill-loader.php'; $required_files = array( // load contracts. forminator_plugin_dir() . 'library/field-autofill-providers/contracts/class-autofill-provider-interface.php', forminator_plugin_dir() . 'library/field-autofill-providers/contracts/class-autofill-provider-abstract.php', // load Forminator provider autoload. forminator_plugin_dir() . 'library/field-autofill-providers/autoload.php', ); $required_files_exists = true; foreach ( $required_files as $required_file ) { if ( ! file_exists( $required_file ) ) { $required_files_exists = false; break; } } if ( $required_files_exists ) { foreach ( $required_files as $required_file ) { /** @noinspection PhpIncludeInspection */ include_once $required_file; } } } /** * Load member's autofill provider * * @since 1.0.5 */ public function maybe_load_external_autofill_providers() { /** * see samples/forminator-simple-autofill-plugin for example how to use it */ do_action( 'forminator_register_autofill_provider' ); } /** * Set up the schedule delete file * * @since 1.13 * @since 1.27 Change from WP cron to Action Scheduler */ public function schedule_forminator_daily_cron() { // Clear old cron schedule. if ( wp_next_scheduled( 'forminator_daily_cron' ) ) { wp_clear_scheduled_hook( 'forminator_daily_cron' ); } // Create new schedule using AS. if ( false === as_has_scheduled_action( 'forminator_daily_cron' ) ) { // Set to run after 25 hours so it will be more than 24 hours compared to file upload time as_schedule_single_action( strtotime( '+25 hours' ), 'forminator_daily_cron', array(), 'forminator', true ); } } /** * Forminator Cron * * @since 1.13 */ public function cron_init() { $this->schedule_delete_temp_files(); } /** * Schedule delete temp file * * @since 1.13 */ public function schedule_delete_temp_files() { $temp_path = forminator_upload_root_temp() . '/'; if ( $handle = @opendir( $temp_path ) ) { // Check if the dir exist before opening it. if ( is_dir( $temp_path ) ) { if ( $handle = opendir( $temp_path ) ) { while ( false !== ( $file = readdir( $handle ) ) ) { if ( ! empty( $file ) && ! in_array( $file, array( '.', '..' ), true ) ) { $temp_file = $temp_path . $file; $file_time = filemtime( $temp_file ); if ( file_exists( $temp_file ) && ( time() - $file_time ) >= 60 * 60 * 12 ) { unlink( $temp_file ); } } } closedir( $handle ); } } } } /* * Upgrade actions */ public function upgrade_actions() { $this->add_security_files(); $this->delete_old_temp_dir(); } /** * Delete old temp dir * * @return void|null */ public function delete_old_temp_dir() { $dir = wp_upload_dir(); $temp_path = trailingslashit( $dir['basedir'] ) . 'forminator_temp'; if ( $dir['error'] || ! is_dir( $temp_path ) ) { return null; } rmdir( $temp_path ); } /** * Adds index files to the upload root for security. * * @return void */ public function add_security_files() { $upload_root = forminator_upload_root(); if ( ! is_dir( $upload_root ) ) { return; } Forminator_Field::check_upload_root_index_file(); if ( ! file_exists( forminator_upload_root() . 'css/index.php' ) ) { Forminator_Field::add_index_file( forminator_upload_root() . 'css/index.php' ); } if ( ! file_exists( forminator_upload_root() . 'signatures/index.php' ) ) { Forminator_Field::add_index_file( forminator_upload_root() . 'signatures/index.php' ); } } }