You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/api/field_types_reference/dateandtimefield.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ This Field Type represents a full date and time information.
10
10
11
11
### Input expectations
12
12
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.
14
14
15
15
It is also possible to directly pass an instance of `\DateTime`.
16
16
@@ -36,7 +36,7 @@ The constructor for this value object will initialize a new Value object with t
36
36
37
37
##### String representation
38
38
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).
Hash value of this Field Type is an array with two keys:
56
56
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"`|
|`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"`|
Copy file name to clipboardExpand all lines: docs/api/field_types_reference/datefield.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ This Field Type represents a date without time information.
10
10
11
11
### Input expectations
12
12
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.
14
14
15
15
It is also possible to directly pass an instance of `\DateTime`.
16
16
@@ -36,7 +36,7 @@ The Value class of this Field Type contains the following properties:
36
36
37
37
##### String representation
38
38
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).
40
40
41
41
|Character|Description|Example|
42
42
|---------|----------|--------|
@@ -49,16 +49,16 @@ Example: `Wednesday 22 May 2016`
49
49
50
50
##### Constructor
51
51
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).
53
53
54
54
### Hash format
55
55
56
56
Hash value of this Field Type is an array with two keys:
57
57
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"`|
|`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"`|
Copy file name to clipboardExpand all lines: docs/api/field_types_reference/timefield.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ What is stored is the number of seconds, calculated from the beginning of the da
14
14
15
15
### Input expectations
16
16
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.
18
18
19
19
It is also possible to directly pass an instance of `\DateTime`.
20
20
@@ -40,7 +40,7 @@ The constructor for this Value object will initialize a new Value object with t
40
40
41
41
##### String representation
42
42
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).
Copy file name to clipboardExpand all lines: docs/api/rest_api_usage.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: The REST API covers objects in the Ibexa DXP Repository with regula
5
5
# REST API usage
6
6
7
7
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.
9
9
10
10
Each resource (URI) interacts with a part of the system (content, users, search, and so on).
11
11
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.
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.
0 commit comments