403Webshell
Server IP : 104.21.38.3  /  Your IP : 162.158.106.35
Web Server : Apache
System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64
User : www ( 1000)
PHP Version : 7.4.33
Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /www/wwwroot/coircraft.com/wp-content/plugins/caldera-forms/includes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /www/wwwroot/coircraft.com/wp-content/plugins/caldera-forms/includes/functions.php
<?php

/**
 * Filter input and return sanitized output
 *
 * Wrapper for Caldera_Forms_Sanitize::sanitize()
 *
 * @param mixed $input The string, array, or object to sanitize
 * @param array $params Additional options
 *
 * @return array|mixed|object|string|void
 *
 * @since 1.4.0
 *
 */
function caldera_forms_sanitize( $input, $params = array() ){
	return Caldera_Forms_Sanitize::sanitize( $input, $params  );
}

/**
 * Clean the crap out of a string.
 *
 * Applies  stripslashes_deep, strip_tags and trim. This is a function of industry, often too much industry.
 *
 * @since 1.4.0
 *
 * @param $string
 *
 * @return string
 */
function caldera_forms_very_safe_string( $string ){
	return Caldera_Forms_Sanitize::remove_scripts(trim( strip_tags( stripslashes_deep( $string ) ) ) );
}


add_action( 'init', 'caldera_forms_fix_license_manger_link' );

/**
 * Redirect old license page link to new license page link
 *
 * @since 1.4.4
 */
function caldera_forms_fix_license_manger_link(){
	if( ! is_admin() ){
		return;
	}
	global $pagenow;
	if( 'options-general.php' == $pagenow && isset( $_GET[ 'page' ] ) && 'calderawp_license_manager' == $_GET[ 'page' ]  ){
		cf_redirect( add_query_arg( 'page', 'calderawp_license_manager', self_admin_url( 'wp-admin/admin.php') ) );
	}
}

add_filter('nonce_user_logged_out', 'caldera_forms_woo_nonce_fix', 100, 2 );

/**
 * If WooCommerce changes logged out nonce user ID, change it back to zero when checking Caldera Forms nonce.
 *
 * Workaround for https://github.com/CalderaWP/Caldera-Forms/issues/894
 *
 * @param int $user_id User ID
 * @param string $action Nonce action
 *
 * @return int
 */
function caldera_forms_woo_nonce_fix( $user_id, $action) {
	if ( class_exists( 'WooCommerce' ) ) {
		if ( $user_id && 0 !== $user_id && $action && 0 === strpos( $action, 'caldera_forms_front' ) ) {
			$user_id = 0;
		}

	}

	return $user_id;

}


/**
 * Create (with escaping) a field attributes string for a Caldera Forms field input
 *
 * @since 1.5.0
 *
 * @param array $attrs Array of attributes, $name => $value
 * @param array $field Field config
 * @param array $form Form config
 *
 *
 * @return  string
 */
function caldera_forms_field_attributes( array $attrs, array $field, array $form ){
	$field_type = Caldera_Forms_Field_Util::get_type( $field, $form );

	/**
	 * Filter field attributes before rendering
	 *
	 * @since 1.5.0
	 *
	 * @param array $attrs Array of attributes, $name => $value
	 * @param array $field Field config
	 * @param array $form Form config
	 */
	$attrs = apply_filters( 'caldera_forms_field_attributes', $attrs, $field, $form );

	/**
	 * Filter field attributes before rendering for a specific field type
	 *
	 * @since 1.5.0
	 *
	 * @param array $attrs Array of attributes, $name => $value
	 * @param array $field Field config
	 * @param array $form Form config
	 */
	$attrs = apply_filters( "caldera_forms_field_attributes-$field_type", $attrs, $form );

	return caldera_forms_implode_field_attributes( caldera_forms_escape_field_attributes_array( $attrs ) );



}

/**
 *  Escape an array of HTML attributes
 *
 * @since 1.5.0
 *
 * @param array $attrs Array of attributes, $name => $value
 *
 * @return array
 */
function caldera_forms_escape_field_attributes_array( array  $attrs, $prefix = null ){
	$out = array();
	foreach ( $attrs as $attr => $value  ) {
		if( $prefix ){
			$attr = $prefix . $attr;
		}

		if( is_array( $value ) ){
			$_value = '';
			foreach ( $value as $v ){
				$_value .= ' ' . esc_attr( $v );
			}
			$out[ $attr ] = $_value;
		}else{
			$out[ $attr ] = esc_attr( $value );
		}
	}

	return $out;
}

/**
 * Implode an escaped array of field attributes
 *
 * @since 1.5.0
 *
 * @param array $attrs
 *
 * @return string
 */
function caldera_forms_implode_field_attributes( array $attrs ){
	$out = '';
	$pattern = '%s="%s" ';
	foreach (  $attrs as $attr => $value  ) {
		if ( 0 != $value  ) {
			if ( empty( $value ) ) {

			}
		}

		$out .= sprintf( $pattern, $attr, $value );
	}

	return $out;
}

/**
 * Get all editable WordPress roles
 *
 * @since 1.5.0
 *
 * @return array
 */
function caldera_forms_get_roles(){
	global $wp_roles;
	$all_roles      = $wp_roles->roles;
	return  apply_filters( 'editable_roles', $all_roles );

}

/**
 * Returns the current release series
 *
 * For 1.5.x will return 5 -- when we get to 2, should return 20, 21, etc.
 *
 * @since 1.5.0
 *
 * @return string
 */
function caldera_forms_get_release_series(){
	return substr( CFCORE_VER, 2, 1 );
}

/**
 * Shim for boolval added in PHP v5.5
 *
 * Developer note: Don't use boolval() use (bool) $value but this is here for saftey's sake.
 * @See: https://github.com/CalderaWP/Caldera-Forms/issues/1727
 *
 * @since 1.5.2.1
 */
if ( ! function_exists( 'boolval' ) ) {
	function boolval( $val ){
		return (bool) $val;
	}

}

/**
 * Check if CF Pro is active
 *
 * @since 1.6.0
 *
 * @return bool
 */
function caldera_forms_pro_is_active(){
    return  ( version_compare( PHP_VERSION, '5.6.0', '>=' ) ) && defined( 'CF_PRO_LOADED' ) && CF_PRO_LOADED && \calderawp\calderaforms\pro\settings\active::get_status();
}

/**
 * Validate a number is between 0 and $max or return $default
 *
 * Return $number if its greater than 0 and less than max value.
 * Returns $default if not.
 *
 * @since 1.7.0
 *
 * @param int|string $number
 * @param int $default Default value
 * @param int $max Maximum allowed value.
 * @return int
 */
function caldera_forms_validate_number( $number, $default, $max ){
    return intval(absint($number) > $max || $number <= 0 ? $default : absint($number));
}

/**
 * Get privacy page URL
 *
 * Defaults to get_privacy_policy_url() if WP 4.9.6 or later
 *
 * @since 1.7.0
 *
 * @return string Privacy policy page url
 */
function caldera_forms_privacy_policy_page_url(){

    $url = function_exists('get_privacy_policy_url') ? get_privacy_policy_url() : '';
    /**
     * Change URL of privacy page
     *
     * @since 1.7.0
     *
     * @param string $url URL of privacy page, by default, is value of get_privacy_policy_url()
     */
    return apply_filters( 'caldera_forms_privacy_policy_page_url', $url );
}

//Copied from WordPress core to provide polyfill of polyfill to WordPress 4.9.5 or below
if ( ! function_exists( 'is_countable' ) ) {
    /**
     * Polyfill for is_countable() function added in PHP 7.3.
     *
     * Verify that the content of a variable is an array or an object
     * implementing the Countable interface.
     *
     * @since 4.9.6
     *
     * @param mixed $var The value to check.
     *
     * @return bool True if `$var` is countable, false otherwise.
     */
    function is_countable( $var ) {
        return ( is_array( $var )
            || $var instanceof Countable
            || $var instanceof SimpleXMLElement
            || $var instanceof ResourceBundle
        );
    }
}

/**
 * Wrapper for wp_send_json() with output buffering
 *
 * @since 1.8.0
 *
 * @param array $data Data to return
 * @param bool $is_error Optional. Is this an error. Default false.
 */
function caldera_forms_send_json(array $data, $is_error = false, $status = null ){
	$buffer = ob_get_clean();
	/**
	 * Runs before Caldera Forms returns json via wp_send_json() exposes output buffer
	 *
	 * @since 1.8.0
	 *
	 * @param string|null $buffer Buffer contents
	 * @param bool $is_error If we think this is an error response or not.
	 */
	do_action('caldera_forms_buffer_flushed', $buffer, $is_error );
	$data[ 'headers_sent'] = headers_sent();
	if( ! $is_error ){
		status_header(200);
		$data[ 'success' ] = true;
		wp_send_json( $data );
	}else{
		wp_send_json_error( $data );
	}
}

/**
 * Starts a flushable buffer
 *
 * @since 1.8.0
 */
function caldera_forms_start_buffer(){
	if( ! did_action( 'caldera_forms_buffer_started' ) ){

		ob_start();

		/**
		 * Runs when buffer is started
		 *
		 * Used to prevent starting buffer twice
		 *
		 * @since 1.8.0
		 */
		do_action( 'caldera_forms_buffer_started' );
	}
}


Youez - 2016 - github.com/yon3zu
LinuXploit