class.jetpack.php 1 location
|
@@ 5137-5144 (lines=8) @@
|
5134 |
|
* |
5135 |
|
* @since 5.4 |
5136 |
|
**/ |
5137 |
|
public static function set_min_time_limit( $min_timeout ) { |
5138 |
|
$timeout = self::get_max_execution_time(); |
5139 |
|
if ( $timeout < $min_timeout ) { |
5140 |
|
$timeout = $min_timeout; |
5141 |
|
set_time_limit( $timeout ); |
5142 |
|
} |
5143 |
|
return $timeout; |
5144 |
|
} |
5145 |
|
|
5146 |
|
/** |
5147 |
|
* Takes the response from the Jetpack register new site endpoint and |
packages/connection/src/Manager.php 1 location
|
@@ 1030-1037 (lines=8) @@
|
1027 |
|
* @since 5.4 |
1028 |
|
* @param Integer $min_timeout the minimum timeout value. |
1029 |
|
**/ |
1030 |
|
public function set_min_time_limit( $min_timeout ) { |
1031 |
|
$timeout = $this->get_max_execution_time(); |
1032 |
|
if ( $timeout < $min_timeout ) { |
1033 |
|
$timeout = $min_timeout; |
1034 |
|
set_time_limit( $timeout ); |
1035 |
|
} |
1036 |
|
return $timeout; |
1037 |
|
} |
1038 |
|
|
1039 |
|
/** |
1040 |
|
* Get our assumed site creation date. |