packages/connection/src/Manager.php 1 location
|
@@ 1014-1021 (lines=8) @@
|
| 1011 |
|
* @since 5.4 |
| 1012 |
|
* @param Integer $min_timeout the minimum timeout value. |
| 1013 |
|
**/ |
| 1014 |
|
public function set_min_time_limit( $min_timeout ) { |
| 1015 |
|
$timeout = $this->get_max_execution_time(); |
| 1016 |
|
if ( $timeout < $min_timeout ) { |
| 1017 |
|
$timeout = $min_timeout; |
| 1018 |
|
set_time_limit( $timeout ); |
| 1019 |
|
} |
| 1020 |
|
return $timeout; |
| 1021 |
|
} |
| 1022 |
|
|
| 1023 |
|
/** |
| 1024 |
|
* Get our assumed site creation date. |
class.jetpack.php 1 location
|
@@ 5195-5202 (lines=8) @@
|
| 5192 |
|
* |
| 5193 |
|
* @since 5.4 |
| 5194 |
|
**/ |
| 5195 |
|
public static function set_min_time_limit( $min_timeout ) { |
| 5196 |
|
$timeout = self::get_max_execution_time(); |
| 5197 |
|
if ( $timeout < $min_timeout ) { |
| 5198 |
|
$timeout = $min_timeout; |
| 5199 |
|
set_time_limit( $timeout ); |
| 5200 |
|
} |
| 5201 |
|
return $timeout; |
| 5202 |
|
} |
| 5203 |
|
|
| 5204 |
|
/** |
| 5205 |
|
* Takes the response from the Jetpack register new site endpoint and |