Skip to content

Commit 76d1c4a

Browse files
committed
use https
1 parent c062c93 commit 76d1c4a

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

docs/api/field_types_reference/dateandtimefield.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This Field Type represents a full date and time information.
1010

1111
### Input expectations
1212

13-
If input value is of type `string` or `integer`, it will be passed directly to the [PHP's built-in `\DateTime` class constructor](http://www.php.net/manual/en/datetime.construct.php), therefore the same input format expectations apply.
13+
If input value is of type `string` or `integer`, it will be passed directly to the [PHP's built-in `\DateTime` class constructor](https://www.php.net/manual/en/datetime.construct.php), therefore the same input format expectations apply.
1414

1515
It is also possible to directly pass an instance of `\DateTime`.
1616

@@ -36,7 +36,7 @@ The constructor for this value object will initialize a new Value object with t
3636

3737
##### String representation
3838

39-
String representation of the date value will generate the date string in the format `D Y-d-m H:i:s` as accepted by [PHP's built-in `date()` function](http://www.php.net/manual/en/function.date.php).
39+
String representation of the date value will generate the date string in the format `D Y-d-m H:i:s` as accepted by [PHP's built-in `date()` function](https://www.php.net/manual/en/function.date.php).
4040

4141
|Character|Description|Example|
4242
|---------|----------|--------|
@@ -54,10 +54,10 @@ Example: `Wed 2016-22-05 12:19:18`
5454

5555
Hash value of this Field Type is an array with two keys:
5656

57-
|Key|Type|Description|Example|
58-
|------|------|------|------|
59-
|`timestamp`|`integer`|Time information in [Unix format timestamp](http://en.wikipedia.org/wiki/Unix_time).|`1400856992`|
60-
|`rfc850`|`string`|Time information as a string in [RFC 850 date format](http://tools.ietf.org/html/rfc850). As input, this will have precedence over the timestamp value.|`"Friday, 23-May-14 14:56:14 GMT+0000"`|
57+
|Key|Type| Description |Example|
58+
|------|------|---------------------------------------------------------------------------------------------------------------------------------------------------------|------|
59+
|`timestamp`|`integer`| Time information in [Unix format timestamp](https://en.wikipedia.org/wiki/Unix_time). |`1400856992`|
60+
|`rfc850`|`string`| Time information as a string in [RFC 850 date format](https://datatracker.ietf.org/doc/html/rfc850). As input, this will have precedence over the timestamp value. |`"Friday, 23-May-14 14:56:14 GMT+0000"`|
6161

6262
``` php
6363
$hash = [

docs/api/field_types_reference/datefield.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This Field Type represents a date without time information.
1010

1111
### Input expectations
1212

13-
If input value is in `string` or `integer` format, it will be passed directly to [PHP's built-in `\DateTime` class constructor](http://www.php.net/manual/en/datetime.construct.php), therefore the same input format expectations apply.
13+
If input value is in `string` or `integer` format, it will be passed directly to [PHP's built-in `\DateTime` class constructor](https://www.php.net/manual/en/datetime.construct.php), therefore the same input format expectations apply.
1414

1515
It is also possible to directly pass an instance of `\DateTime`.
1616

@@ -36,7 +36,7 @@ The Value class of this Field Type contains the following properties:
3636

3737
##### String representation
3838

39-
String representation of the date value will generate the date string in the format "l d F Y" as accepted by [PHP's built-in `date()` function](http://www.php.net/manual/en/function.date.php).
39+
String representation of the date value will generate the date string in the format "l d F Y" as accepted by [PHP's built-in `date()` function](https://www.php.net/manual/en/function.date.php).
4040

4141
|Character|Description|Example|
4242
|---------|----------|--------|
@@ -49,16 +49,16 @@ Example: `Wednesday 22 May 2016`
4949

5050
##### Constructor
5151

52-
The constructor for this value object will initialize a new Value object with the value provided. It accepts an instance of [PHP's built-in `\DateTime` class](http://www.php.net/manual/en/datetime.construct.php).
52+
The constructor for this value object will initialize a new Value object with the value provided. It accepts an instance of [PHP's built-in `\DateTime` class](https://www.php.net/manual/en/datetime.construct.php).
5353

5454
### Hash format
5555

5656
Hash value of this Field Type is an array with two keys:
5757

58-
|Key|Type|Description|Example|
59-
|------|------|------|------|
60-
|`timestamp`|`integer`|Time information in [unix format timestamp](http://en.wikipedia.org/wiki/Unix_time).|`1400856992`|
61-
|`rfc850`|`string`|Time information as a string in [RFC 850 date format](http://tools.ietf.org/html/rfc850). As input, this will have higher precedence over the timestamp value.|`"Friday, 23-May-14 14:56:14 GMT+0000"`|
58+
|Key|Type| Description |Example|
59+
|------|------|----------------------------------------------------------------------------------------------------------------------------------------------------------------|------|
60+
|`timestamp`|`integer`| Time information in [unix format timestamp](https://en.wikipedia.org/wiki/Unix_time). |`1400856992`|
61+
|`rfc850`|`string`| Time information as a string in [RFC 850 date format](https://datatracker.ietf.org/doc/html/rfc850). As input, this will have higher precedence over the timestamp value. |`"Friday, 23-May-14 14:56:14 GMT+0000"`|
6262

6363
``` php
6464
// Example of the hash value in PHP

docs/api/field_types_reference/timefield.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ What is stored is the number of seconds, calculated from the beginning of the da
1414

1515
### Input expectations
1616

17-
If input value is of type `string` or `integer`, it will be passed directly to the [PHP's built-in `\DateTime` class](http://www.php.net/manual/en/datetime.construct.php) constructor, therefore the same input format expectations apply.
17+
If input value is of type `string` or `integer`, it will be passed directly to the [PHP's built-in `\DateTime` class](https://www.php.net/manual/en/datetime.construct.php) constructor, therefore the same input format expectations apply.
1818

1919
It is also possible to directly pass an instance of `\DateTime`.
2020

@@ -40,7 +40,7 @@ The constructor for this Value object will initialize a new Value object with t
4040

4141
##### String representation
4242

43-
String representation of the date value will generate the date string in the format "H:i:s" as accepted by [PHP's built-in `date()` function](http://www.php.net/manual/en/function.date.php).
43+
String representation of the date value will generate the date string in the format "H:i:s" as accepted by [PHP's built-in `date()` function](https://www.php.net/manual/en/function.date.php).
4444

4545
|Character|Description|Example|
4646
|---------|----------|--------|

docs/api/rest_api_usage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: The REST API covers objects in the Ibexa DXP Repository with regula
55
# REST API usage
66

77
The REST API in [[= product_name =]] allows you to interact with an [[= product_name =]] installation using the HTTP protocol,
8-
following a [REST](http://en.wikipedia.org/wiki/Representational_state_transfer) interaction model.
8+
following a [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) interaction model.
99

1010
Each resource (URI) interacts with a part of the system (content, users, search, and so on).
1111
Every interaction with the Repository than you can do from Back Office or using the [Public PHP API](public_php_api.md) can also be done using the REST API.
@@ -58,7 +58,7 @@ curl -H "Accept: application/json" https://api.example.com/api/ezp/v2/
5858

5959
### Country list
6060

61-
Alongside regular Repository interactions, there is a REST service providing a list of countries with their names, [ISO-3166](http://en.wikipedia.org/wiki/ISO_3166) codes and International Dialing Codes (IDC). It could be useful when presenting a country options list from any application.
61+
Alongside regular Repository interactions, there is a REST service providing a list of countries with their names, [ISO-3166](https://en.wikipedia.org/wiki/ISO_3166) codes and International Dialing Codes (IDC). It could be useful when presenting a country options list from any application.
6262

6363
This country list's URI is `/services/countries`.
6464

0 commit comments

Comments
 (0)