projects/packages/connection/src/class-manager.php 1 location
|
@@ 1254-1261 (lines=8) @@
|
| 1251 |
|
* @since 5.4 |
| 1252 |
|
* @param Integer $min_timeout the minimum timeout value. |
| 1253 |
|
**/ |
| 1254 |
|
public function set_min_time_limit( $min_timeout ) { |
| 1255 |
|
$timeout = $this->get_max_execution_time(); |
| 1256 |
|
if ( $timeout < $min_timeout ) { |
| 1257 |
|
$timeout = $min_timeout; |
| 1258 |
|
set_time_limit( $timeout ); |
| 1259 |
|
} |
| 1260 |
|
return $timeout; |
| 1261 |
|
} |
| 1262 |
|
|
| 1263 |
|
/** |
| 1264 |
|
* Get our assumed site creation date. |
projects/plugins/jetpack/class.jetpack.php 1 location
|
@@ 5397-5404 (lines=8) @@
|
| 5394 |
|
* |
| 5395 |
|
* @since 5.4 |
| 5396 |
|
**/ |
| 5397 |
|
public static function set_min_time_limit( $min_timeout ) { |
| 5398 |
|
$timeout = self::get_max_execution_time(); |
| 5399 |
|
if ( $timeout < $min_timeout ) { |
| 5400 |
|
$timeout = $min_timeout; |
| 5401 |
|
set_time_limit( $timeout ); |
| 5402 |
|
} |
| 5403 |
|
return $timeout; |
| 5404 |
|
} |
| 5405 |
|
|
| 5406 |
|
/** |
| 5407 |
|
* Takes the response from the Jetpack register new site endpoint and |