class.jetpack.php 1 location
|
@@ 5340-5347 (lines=8) @@
|
5337 |
|
* |
5338 |
|
* @since 5.4 |
5339 |
|
**/ |
5340 |
|
public static function set_min_time_limit( $min_timeout ) { |
5341 |
|
$timeout = self::get_max_execution_time(); |
5342 |
|
if ( $timeout < $min_timeout ) { |
5343 |
|
$timeout = $min_timeout; |
5344 |
|
set_time_limit( $timeout ); |
5345 |
|
} |
5346 |
|
return $timeout; |
5347 |
|
} |
5348 |
|
|
5349 |
|
/** |
5350 |
|
* Takes the response from the Jetpack register new site endpoint and |
packages/connection/src/class-manager.php 1 location
|
@@ 1161-1168 (lines=8) @@
|
1158 |
|
* @since 5.4 |
1159 |
|
* @param Integer $min_timeout the minimum timeout value. |
1160 |
|
**/ |
1161 |
|
public function set_min_time_limit( $min_timeout ) { |
1162 |
|
$timeout = $this->get_max_execution_time(); |
1163 |
|
if ( $timeout < $min_timeout ) { |
1164 |
|
$timeout = $min_timeout; |
1165 |
|
set_time_limit( $timeout ); |
1166 |
|
} |
1167 |
|
return $timeout; |
1168 |
|
} |
1169 |
|
|
1170 |
|
/** |
1171 |
|
* Get our assumed site creation date. |