packages/connection/src/class-manager.php 1 location
|
@@ 1099-1106 (lines=8) @@
|
1096 |
|
* @since 5.4 |
1097 |
|
* @param Integer $min_timeout the minimum timeout value. |
1098 |
|
**/ |
1099 |
|
public function set_min_time_limit( $min_timeout ) { |
1100 |
|
$timeout = $this->get_max_execution_time(); |
1101 |
|
if ( $timeout < $min_timeout ) { |
1102 |
|
$timeout = $min_timeout; |
1103 |
|
set_time_limit( $timeout ); |
1104 |
|
} |
1105 |
|
return $timeout; |
1106 |
|
} |
1107 |
|
|
1108 |
|
/** |
1109 |
|
* Get our assumed site creation date. |
class.jetpack.php 1 location
|
@@ 5337-5344 (lines=8) @@
|
5334 |
|
* |
5335 |
|
* @since 5.4 |
5336 |
|
**/ |
5337 |
|
public static function set_min_time_limit( $min_timeout ) { |
5338 |
|
$timeout = self::get_max_execution_time(); |
5339 |
|
if ( $timeout < $min_timeout ) { |
5340 |
|
$timeout = $min_timeout; |
5341 |
|
set_time_limit( $timeout ); |
5342 |
|
} |
5343 |
|
return $timeout; |
5344 |
|
} |
5345 |
|
|
5346 |
|
/** |
5347 |
|
* Takes the response from the Jetpack register new site endpoint and |