projects/packages/connection/src/class-manager.php 1 location
|
@@ 1163-1170 (lines=8) @@
|
| 1160 |
|
* @since 5.4 |
| 1161 |
|
* @param Integer $min_timeout the minimum timeout value. |
| 1162 |
|
**/ |
| 1163 |
|
public function set_min_time_limit( $min_timeout ) { |
| 1164 |
|
$timeout = $this->get_max_execution_time(); |
| 1165 |
|
if ( $timeout < $min_timeout ) { |
| 1166 |
|
$timeout = $min_timeout; |
| 1167 |
|
set_time_limit( $timeout ); |
| 1168 |
|
} |
| 1169 |
|
return $timeout; |
| 1170 |
|
} |
| 1171 |
|
|
| 1172 |
|
/** |
| 1173 |
|
* Get our assumed site creation date. |
projects/plugins/jetpack/class.jetpack.php 1 location
|
@@ 5466-5473 (lines=8) @@
|
| 5463 |
|
* |
| 5464 |
|
* @since 5.4 |
| 5465 |
|
**/ |
| 5466 |
|
public static function set_min_time_limit( $min_timeout ) { |
| 5467 |
|
$timeout = self::get_max_execution_time(); |
| 5468 |
|
if ( $timeout < $min_timeout ) { |
| 5469 |
|
$timeout = $min_timeout; |
| 5470 |
|
set_time_limit( $timeout ); |
| 5471 |
|
} |
| 5472 |
|
return $timeout; |
| 5473 |
|
} |
| 5474 |
|
|
| 5475 |
|
/** |
| 5476 |
|
* Takes the response from the Jetpack register new site endpoint and |