| Server IP : 145.239.37.162 / Your IP : 216.73.216.137 Web Server : Apache System : Linux webm003.cluster130.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaa ( 38250) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaa/www_old/wp-content/plugins/envato-elements/inc/utils/ |
Upload File : |
<?php
/**
* Envato Elements: Limits
*
* Limits
*
* @package Envato/Envato_Elements
* @since 2.0.0
*/
namespace Envato_Elements\Utils;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Limits
*
* @since 2.0.0
*/
class Limits extends Base {
/**
* We raise our memory, timeout limits and image threshold during import because
* some operations take a lot of processing (i.e. large images in Template Kits).
*/
public function raise_limits() {
// WordPress added a size threshold when uploading images in 5.3.0. Adding This filter
// will remove that threshold. Reference - https://developer.wordpress.org/reference/hooks/big_image_size_threshold/.
add_filter( 'big_image_size_threshold', '__return_false' );
// WordPress has a built in way to raise the memory limit thankfully:
wp_raise_memory_limit( 'admin' );
if ( wp_is_ini_value_changeable( 'max_execution_time' ) ) {
ini_set( 'max_execution_time', 0 );
}
@ set_time_limit( 0 );
}
public function get_current_ini_bytes( $ini_setting ) {
return wp_convert_hr_to_bytes( ini_get( $ini_setting ) );
}
public function get_max_execution_time() {
return ini_get( 'max_execution_time' );
}
public function get_max_input_vars() {
return ini_get( 'max_input_vars' );
}
}