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