class.jetpack.php 1 location
|
@@ 5356-5363 (lines=8) @@
|
5353 |
|
* |
5354 |
|
* @since 5.4 |
5355 |
|
**/ |
5356 |
|
public static function set_min_time_limit( $min_timeout ) { |
5357 |
|
$timeout = self::get_max_execution_time(); |
5358 |
|
if ( $timeout < $min_timeout ) { |
5359 |
|
$timeout = $min_timeout; |
5360 |
|
set_time_limit( $timeout ); |
5361 |
|
} |
5362 |
|
return $timeout; |
5363 |
|
} |
5364 |
|
|
5365 |
|
/** |
5366 |
|
* Takes the response from the Jetpack register new site endpoint and |
packages/connection/src/class-manager.php 1 location
|
@@ 1184-1191 (lines=8) @@
|
1181 |
|
* @since 5.4 |
1182 |
|
* @param Integer $min_timeout the minimum timeout value. |
1183 |
|
**/ |
1184 |
|
public function set_min_time_limit( $min_timeout ) { |
1185 |
|
$timeout = $this->get_max_execution_time(); |
1186 |
|
if ( $timeout < $min_timeout ) { |
1187 |
|
$timeout = $min_timeout; |
1188 |
|
set_time_limit( $timeout ); |
1189 |
|
} |
1190 |
|
return $timeout; |
1191 |
|
} |
1192 |
|
|
1193 |
|
/** |
1194 |
|
* Get our assumed site creation date. |