diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-FieldType-FieldType.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-FieldType-FieldType.html index c5a0e71ee4..aacd24f5f6 100644 --- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-FieldType-FieldType.html +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-FieldType-FieldType.html @@ -39139,21 +39139,20 @@
array<string|int, mixed>
Hash with relation type as key and array of destination content ids as value.
-Example:
-
-array(
-\Ibexa\Contracts\Core\Repository\Values\Content\Relation::LINK => array(
-"contentIds" => array( 12, 13, 14 ),
-"locationIds" => array( 24 )
-),
-\Ibexa\Contracts\Core\Repository\Values\Content\Relation::EMBED => array(
-"contentIds" => array( 12 ),
-"locationIds" => array( 24, 45 )
-),
-\Ibexa\Contracts\Core\Repository\Values\Content\Relation::FIELD => array( 12 )
-)
-
Hash with relation type as key and array of destination content IDs as value.
+Example:
+[
+ \Ibexa\Contracts\Core\Repository\Values\Content\Relation::LINK => [
+ 'contentIds' => [12, 13, 14],
+ 'locationIds' => [24]
+ ],
+ \Ibexa\Contracts\Core\Repository\Values\Content\Relation::EMBED => [
+ 'contentIds" => [12],
+ 'locationIds' => [24, 45]
+ ],
+ \Ibexa\Contracts\Core\Repository\Values\Content\Relation::FIELD => [12]
+]
+
Best practice:
It is considered best practice to return a hash map, which contains rudimentary settings structures, like e.g. for the "ezstring" FieldType
-
- array(
- 'stringLength' => array(
- 'minStringLength' => array(
- 'type' => 'int',
- 'default' => 0,
- ),
- 'maxStringLength' => array(
- 'type' => 'int'
- 'default' => null,
- )
- ),
- );
-
+[
+ 'stringLength' => [
+ 'minStringLength' => [
+ 'type' => 'int',
+ 'default' => 0,
+ ],
+ 'maxStringLength' => [
+ 'type' => 'int'
+ 'default' => null,
+ ],
+ ],
+];
+
diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-FieldType-Generic-Type.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-FieldType-Generic-Type.html
index 2a51ed45ee..173553e819 100644
--- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-FieldType-Generic-Type.html
+++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-FieldType-Generic-Type.html
@@ -39237,21 +39237,20 @@ array<string|int, mixed>
Hash with relation type as key and array of destination content ids as value.
-Example:
-
-array(
-\Ibexa\Contracts\Core\Repository\Values\Content\Relation::LINK => array(
-"contentIds" => array( 12, 13, 14 ),
-"locationIds" => array( 24 )
-),
-\Ibexa\Contracts\Core\Repository\Values\Content\Relation::EMBED => array(
-"contentIds" => array( 12 ),
-"locationIds" => array( 24, 45 )
-),
-\Ibexa\Contracts\Core\Repository\Values\Content\Relation::FIELD => array( 12 )
-)
-
Hash with relation type as key and array of destination content IDs as value.
+Example:
+[
+ \Ibexa\Contracts\Core\Repository\Values\Content\Relation::LINK => [
+ 'contentIds' => [12, 13, 14],
+ 'locationIds' => [24]
+ ],
+ \Ibexa\Contracts\Core\Repository\Values\Content\Relation::EMBED => [
+ 'contentIds" => [12],
+ 'locationIds' => [24, 45]
+ ],
+ \Ibexa\Contracts\Core\Repository\Values\Content\Relation::FIELD => [12]
+]
+
Best practice:
It is considered best practice to return a hash map, which contains rudimentary settings structures, like e.g. for the "ezstring" FieldType
-
- array(
- 'stringLength' => array(
- 'minStringLength' => array(
- 'type' => 'int',
- 'default' => 0,
- ),
- 'maxStringLength' => array(
- 'type' => 'int'
- 'default' => null,
- )
- ),
- );
-
+[
+ 'stringLength' => [
+ 'minStringLength' => [
+ 'type' => 'int',
+ 'default' => 0,
+ ],
+ 'maxStringLength' => [
+ 'type' => 'int'
+ 'default' => null,
+ ],
+ ],
+];
+
@@ -40100,19 +40098,18 @@ This is an operation method for acceptValue().
+This is an operation method for Type::acceptValue().
Default implementation expects the value class to reside in the same namespace as its FieldType class and is named "Value".
-Example implementation:
-
-protected function checkValueType($value): void
-{
-if ( !$inputValue instanceof \My\FieldType\CookieJar\Value ) )
-{
-throw new InvalidArgumentException( "Given value type is not supported." );
-}
-}
-
Example implementation:
+ protected function checkValueType($value): void
+ {
+ if (!$inputValue instanceof \My\FieldType\CookieJar\Value))
+ {
+ throw new InvalidArgumentException("Given value type isn't supported.");
+ }
+ }
+
A value returned by createValueFromInput().
+A value returned by Type::createValueFromInput().
If given $inputValue could not be converted or is already an instance of dedicate value object, the method should simply return it.
-This is an operation method for acceptValue().
-Example implementation:
-
-protected function createValueFromInput( $inputValue )
-{
-if ( is_array( $inputValue ) )
-{
-$inputValue = \My\FieldType\CookieJar\Value( $inputValue );
-}
return $inputValue;
+This is an operation method for Type::acceptValue().
+Example implementation:
+ protected function createValueFromInput($inputValue)
+ {
+ if (is_array($inputValue))
+ {
+ $inputValue = \My\FieldType\CookieJar\Value($inputValue);
+ }
+
+ return $inputValue;
+ }
-}
-
{@see \Symfony\Component\Validator\ConstraintViolationInterface} to -{@see \Ibexa\Contracts\Core\FieldType\ValidationError} adapter.
+Constraint violation validation error.
+Adapts ConstraintViolationInterface to +ValidationError.
+ +Builder of {@see \Ibexa\Contracts\Core\Limitation\Target\Version} instance.
+Version builder.
+Builder of Version instance.
+ +public changeStatusTo(int $status) : self
+ public changeStatusTo(int $status) : VersionBuilder
Supported: VersionInfo::STATUS_DRAFT, VersionInfo::STATUS_PUBLISHED, VersionInfo::STATUS_ARCHIVED
Supported: VersionInfo::STATUS_DRAFT, VersionInfo::STATUS_PUBLISHED, VersionInfo::STATUS_ARCHIVED
self
+public createFromAnyContentTypeOf(array<string|int, int> $contentTypeIds) : self
+ public createFromAnyContentTypeOf(array<int, int> $contentTypeIds) : VersionBuilder
self
+public publishTranslations(array<string|int, string> $languageCodes) : self
+ public publishTranslations(array<int, string> $languageCodes) : VersionBuilder
self
+public translateToAnyLanguageOf(array<string|int, mixed> $languageCodes) : self
+ public translateToAnyLanguageOf(array<string|int, mixed> $languageCodes) : VersionBuilder
self
+public updateFields(array<string|int, Field> $updatedFields) : self
+ public updateFields(array<string|int, Field> $updatedFields) : VersionBuilder
self
+public updateFieldsTo(string|null $initialLanguageCode, array<string|int, Field> $fields) : self
+ public updateFieldsTo(string|null $initialLanguageCode, array<int, Field> $fields) : VersionBuilder
self
+ diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Limitation-Type.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Limitation-Type.html index 34c03d1ae4..e94d411b2e 100644 --- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Limitation-Type.html +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Limitation-Type.html @@ -38343,10 +38343,11 @@The type abstains from voting.
Constant for return value of Type::evaluate().
+Returning ACCESS_ABSTAIN must mean that evaluate does not support the provided $object or $targets, +this is only supported by role limitations as policy limitations should not allow this.
+Note: In future version constant values might change to 1, 0 and -1 as used in Symfony.
+ +Access is denied.
Constant for return value of Type::evaluate().
+Note: In future version constant values might change to 1, 0 and -1 as used in Symfony.
+ +Constants for return value of {@see evaluate()}.
+Access is granted.
Currently ACCESS_ABSTAIN must mean that evaluate does not support the provided $object or $targets, -this is currently only supported by role limitations as policy limitations should not allow this.
+Constant for return value of Type::evaluate().
Note: In future version constant values might change to 1, 0 and -1 as used in Symfony.
Constants for valueSchema() return values.
+Limitation's value must be an array of location IDs.
Used in cases where a certain value is accepted but the options are to many to return as a hash of options. -GUI should typically present option to browse content tree to select limitation value(s).
+Constant for Type::valueSchema() return values.
+GUI should typically present option to browse content tree to select limitation value(s).
Limitation's value must be an array of location paths.
Constant for Type::valueSchema() return values.
+GUI should typically present option to browse content tree to select limitation value(s).
+ +public buildValue(array<string|int, mixed> $limitationValues) : Limitation
+ public buildValue(array<int, mixed> $limitationValues) : Limitation
The is the method to create values as Limitation type needs value knowledge anyway in acceptValue, +
This is the method to create values as Limitation type needs value knowledge anyway in acceptValue, the reverse relation is provided by means of identifier lookup (Value has identifier, and so does RoleService).
public evaluate(Limitation $value, UserReference $currentUser, ValueObject $object[, array<string|int, ValueObject>|null $targets = null ]) : bool|null
+ public evaluate(Limitation $value, UserReference $currentUser, ValueObject $object[, array<int, ValueObject>|null $targets = null ]) : bool|null
bool|null
Returns one of ACCESS_* constants
+Returns one of ACCESS_* constants, Type::ACCESS_GRANTED, Type::ACCESS_ABSTAIN, or Type::ACCESS_DENIED.
public validate(Limitation $limitationValue) : array<string|int, ValidationError>
+ public validate(Limitation $limitationValue) : array<int, ValidationError>
array<string|int, ValidationError>
+array<int, ValidationError>
Count total number of items returned by {@see find} method.
+Counts total number of items matching the filter.
@@ -38500,6 +38500,10 @@ |
- array<string|int, string> + array<int, string>|null |
null
@@ -38769,7 +38773,7 @@ |
-
+
|
@@ -38808,7 +38812,7 @@ - array<string|int, string> + array<int, string>|null |
null
@@ -39114,7 +39118,7 @@ |
@@ -39165,7 +39169,7 @@ |
array<string|int, Location>
+array<int, Location>
public loadLocationList(array<string|int, mixed> $locationIds[, array<string|int, string>|null $prioritizedLanguages = null ][, bool|null $useAlwaysAvailable = null ]) : array<string|int, Location>|iterable<string|int, mixed>
+ public loadLocationList(array<string|int, mixed> $locationIds[, array<int, string>|null $prioritizedLanguages = null ][, bool|null $useAlwaysAvailable = null ]) : array<int, Location>|iterable<string|int, Location>
array<string|int, Location>|iterable<string|int, mixed>
+array<int, Location>|iterable<string|int, Location>
Capability flag for advanced fulltext feature for use with {@see ::supports()}.
+Capability flag for advanced fulltext feature.
Advance full text is a feature making to possible by current engine to parse advance full text expressions.
+To use with SearchService::supports().
+Advance full text is a feature making to possible by current engine to parse advance full text expressions.
Capability flag for aggregation feature for use with {@see ::supports()}.
+Capability flag for aggregation feature.
To use with SearchService::supports().
+ +Capability flag for custom fields feature for use with {@see ::supports()}.
+Capability flag for custom fields feature.
Custom fields is the capability for search engines to 1. allow you to extend the search index via plugins to -generate custom fields, like a different representation (format, ...) of an existing field or similar. And 2. -allow you on some search criteria to specify this custom field to rather query on that instead of the default -field generated by the system.
+To use with SearchService::supports().
+Custom fields is the capability for search engines to:
+Capability flag for facets feature for use with {@see ::supports()}.
+Capability flag for facets feature.
Faceted search: https://en.wikipedia.org/wiki/Faceted_search
+To use with SearchService::supports().
+Note: Even if search engine tells you this is supported, beware:
Capability flag for scoring feature for use with {@see ::supports()}.
+Capability flag for scoring feature.
Scoring, a search feature telling you how well one search hit scores compared to other items in the search result. +
To use with SearchService::supports().
+Scoring, a search feature telling you how well one search hit scores compared to other items in the search result. When this is supported you can expect search engine to populate SearchHit->score and SearchResult->maxScore properties as well as sort by this if no sort clauses are specified.
@@ -38537,11 +38548,11 @@Capability flag for spellcheck feature for use with {@see ::supports()}.
+Capability flag for spellcheck feature.
Spell check within search capabilities refers to ability to suggest better wordings in fulltext search string.
+To use with SearchService::supports().
+Spell check within search capabilities refers to ability to suggest better wordings in fulltext search string.
WARNING: This feature is considered experimental given it is not completely designed yet in terms of how it should interact with FullText criterion (singular) which is the most relevant here. Also given how FullText can be part of a more complex criteria it might imply a need to more strictly define where users are supposed to place FullText vs other criteria.
@@ -38576,11 +38588,11 @@Capability flag for suggest feature for use with {@see ::supports()}.
+Capability flag for suggest feature.
WARNING: This feature is considered experimental given it is not completely clear what it is supposed to do. Feature +
To use with SearchService::supports().
+WARNING: This feature is considered experimental given it is not completely clear what it is supposed to do. Feature might be deprecated in the future.
public findContent(Query $query[, array<string|int, mixed> $languageFilter = [] ][, bool $filterOnUserPermissions = true ]) : SearchResult
+ public findContent(Query $query[, array<string, mixed>|array<int, string> $languageFilter = [] ][, bool $filterOnUserPermissions = true ]) : SearchResult
Configuration for specifying prioritized languages query will be performed on.
Also used to define which field languages are loaded for the returned content.
-Currently supports: array("languages" => array(
-useAlwaysAvailable defaults to true to avoid exceptions on missing translations
['languages' => [<language_code_string>,…], 'useAlwaysAvailable' => <bool>]
+[<language_code_string>,…]
where useAlwaysAvailable
defaults to true
to avoid exceptions on missing translations.if true only the objects which the user is allowed to read are returned.
+if true
(default), only the objects which the user is allowed to read are returned.
public findContentInfo(Query $query[, array<string|int, mixed> $languageFilter = [] ][, bool $filterOnUserPermissions = true ]) : SearchResult
+ public findContentInfo(Query $query[, array<string, mixed>|array<int, string> $languageFilter = [] ][, bool $filterOnUserPermissions = true ]) : SearchResult
Configuration for specifying prioritized languages query will be performed on.
-Currently supports: array("languages" => array(
-useAlwaysAvailable defaults to true to avoid exceptions on missing translations
['languages' => [<language_code_string>,…], 'useAlwaysAvailable' => <bool>]
+[<language_code_string>,…]
where useAlwaysAvailable
defaults to true
to avoid exceptions on missing translations.if true (default) only the objects which is the user allowed to read are returned.
+if true
(default), only the objects which the user is allowed to read are returned.
public findLocations(LocationQuery $query[, array<string|int, mixed> $languageFilter = [] ][, bool $filterOnUserPermissions = true ]) : SearchResult
+ public findLocations(LocationQuery $query[, array<string, mixed>|array<int, string> $languageFilter = [] ][, bool $filterOnUserPermissions = true ]) : SearchResult
Configuration for specifying prioritized languages query will be performed on.
-Currently supports: array("languages" => array(
-useAlwaysAvailable defaults to true to avoid exceptions on missing translations
['languages' => [<language_code_string>,…], 'useAlwaysAvailable' => <bool>]
+[<language_code_string>,…]
where useAlwaysAvailable
defaults to true
to avoid exceptions on missing translations.if true only the objects which is the user allowed to read are returned.
+if true
(default), only the objects which the user is allowed to read are returned.
Configuration for specifying prioritized languages query will be performed on.
-Currently supports: array("languages" => array(
-useAlwaysAvailable defaults to true to avoid exceptions on missing translations
['languages' => [<language_code_string>,…], 'useAlwaysAvailable' => <bool>]
+[<language_code_string>,…]
where useAlwaysAvailable
defaults to true
to avoid exceptions on missing translations.if true only the objects which is the user allowed to read are returned.
+if true
(default), only the objects which the user is allowed to read are returned.
One of CAPABILITY_* constants.
+One of the CAPABILITY_* constants (only a single one, not a bitwise combination): +CAPABILITY_SCORING, +CAPABILITY_FACETS, +CAPABILITY_CUSTOM_FIELDS, +CAPABILITY_SPELLCHECK,
+CAPABILITY_SUGGEST, +CAPABILITY_ADVANCED_FULLTEXT, or +CAPABILITY_AGGREGATIONS.
@deprecated 4.6.7 accessing magic getter is deprecated and will be removed in 5.0.0. Use Location::getContentId() instead.
+Accessing magic getter is deprecated since 4.6.7 and will be removed in 5.0.0. Use Location::getContentId() instead.
calls getContentInfo()
+@deprecated 4.6.7 accessing magic getter is deprecated and will be removed in 5.0.0. Use Location::getDepth() instead.
+Accessing magic getter is deprecated since 4.6.7 and will be removed in 5.0.0. Use Location::getDepth() instead.
@deprecated 4.6.7 accessing magic getter is deprecated and will be removed in 5.0.0. Use Location::isHidden() instead.
+Accessing magic getter is deprecated since 4.6.7 and will be removed in 5.0.0. Use Location::isHidden() instead.
@deprecated 4.6.7 accessing magic getter is deprecated and will be removed in 5.0.0. Use Location::getId() instead.
+Accessing magic getter is deprecated since 4.6.7 and will be removed in 5.0.0. Use Location::getId() instead.
Location ID.
- -@deprecated 4.6.7 accessing magic getter is deprecated and will be removed in 5.0.0. Use Location::isInvisible() instead.
+Accessing magic getter is deprecated since 4.6.7 and will be removed in 5.0.0. Use Location::isInvisible() instead.
the id of the parent location
+The ID of the parent location
@deprecated 4.6.7 accessing magic getter is deprecated and will be removed in 5.0.0. Use Location::getPath() instead.
+Accessing magic getter is deprecated since 4.6.7 and will be removed in 5.0.0. Use Location::getPath() instead.
Same as {@see Location::$pathString} but as array, e.g.: <code>[ '1', '2', '4', '23' ]</code>.
+The list of ancestor locations' IDs, ordered by increasing depth, +starting with '1', and ending with the current Location's ID.
-
+
|
Same as Location::$pathString but as array, e.g.: ['1', '2', '4', '23']
.
@deprecated 4.6.7 accessing magic getter is deprecated and will be removed in 5.0.0. Use Location::getPathString() instead.
+Accessing magic getter is deprecated since 4.6.7 and will be removed in 5.0.0. Use Location::getPathString() instead.
The materialized path of the location entry, eg: /1/2/.
+The materialized path of the location entry, eg: /1/2/4/23/.
a global unique id of the content object
+A global unique ID of the content object
the status of the location.
+The status of the location.
a location gets the status DRAFT on newly created content which is not published. When content is published the -location gets the status STATUS_PUBLISHED
+A location gets the status Location::STATUS_DRAFT on newly created content which is not published. +When content is published the location gets the status Location::STATUS_PUBLISHED.
public __construct([array<string|int, mixed> $properties = [] ])
+ public __construct([array<string, mixed> $properties = [] ])
Readonly properties values must be set using $properties as they are not writable anymore +
Readonly properties values must be set using $properties
as they aren't writable anymore
after object has been created.
Same as {@see Location::getPathString()} but as array, e.g.: <code>[ '1', '2', '4', '23' ]</code>.
+The list of ancestor locations' IDs, ordered by increasing depth, +starting with 1, and ending with the current Location's ID.
-
+
|
@@ -40409,8 +40447,12 @@
-
+
|
@@ -40652,7 +40694,7 @@ - array<string|int, mixed> + array<int, string> |
[]
@@ -40687,7 +40729,7 @@ Parameters |
array<string|int, mixed>
+array<int, string>
Supported Operators: -EQ, IN: matches content whose date is or belongs to a list of timestamps -GT, GTE: matches content whose date is greater than/greater than or equals the given timestamp -LT, LTE: matches content whose date is lower than/lower than or equals the given timestamp -BETWEEN: matches content whose date is between (included) the TWO given timestamps
-Example:
- Supported Operators: The following example is a criterion for contents created yesterday or today:
-$createdCriterion = new Criterion\DateMetadata(
-Criterion\DateMetadata::CREATED,
-Operator::GTE,
-strtotime( 'yesterday' )
+
+
+$createdCriterion = new Criterion\DateMetadata(
+ Criterion\DateMetadata::CREATED,
+ Criterion\Operator::GTE,
+ strtotime('yesterday')
);
-
(applies to TrashService::findTrashItems only).
+To search for contents based on when they have been sent to trash.
Applies to TrashService::findTrashItems() only.
+ +Creates a new DateMetadata criterion on $metadata.
+Creates a new DateMetadata criterion.
One of DateMetadata::CREATED, DateMetadata::MODIFIED or DateMetadata::TRASHED (applies to TrashService::findTrashItems only) +One of DateMetadata::CREATED, DateMetadata::MODIFIED, or DateMetadata::TRASHED (applies to TrashService::findTrashItems() only) Parameters |
One of the Operator constants +One of the Operator constants
|
-
+
|
@@ -38833,13 +38842,16 @@
One of UserMetadata::OWNER, UserMetadata::GROUP or UserMetadata::MODIFIED +One of UserMetadata::OWNER, UserMetadata::GROUP, or UserMetadata::MODIFIER. Parameters |
The operator the Criterion uses. If null is given, will default to Operator::IN if $value is an array, Operator::EQ if it is not. +The operator the Criterion uses. If null is given, will default to Operator::IN if $value is an array, Operator::EQ if it isn't. Parameters |
The match value, either as an array of as a single value, depending on the operator +The match value, either as an array of as a single value, depending on the operator. |
-
+
|
@@ -38772,13 +38774,16 @@
@@ -38527,6 +38527,10 @@ |
The operator the Criterion uses. If null is given, will default to Operator::IN if $value is an array, -Operator::EQ if it is not. +The operator the Criterion uses. If null is given, will default to Operator::IN if $value is an array, +Operator::EQ if it isn't. Parameters$value |
- array<string|int, scalar>|scalar + array<int, scalar>|scalar |
-
@@ -38632,7 +38636,7 @@
|
-
+
|
@@ -38662,13 +38666,16 @@
-
+
|
@@ -38380,7 +38380,7 @@ - array<string|int, mixed> + array<string, mixed> |
[]
@@ -38420,11 +38420,11 @@
|
-
+
|
@@ -38447,7 +38447,7 @@ - array<string|int, mixed> + array<int, string> |
[]
@@ -38482,7 +38482,7 @@ Parameters |
array<string|int, mixed>
+array<int, string>
Capability interface for search engines needed for {@see \Ibexa\Contracts\Core\Repository\SearchService::supports()}.
+Capability interface for search engines.
+Capability interface for search engines needed for SearchService::supports().
+ +One of \Ibexa\Contracts\Core\Repository\SearchService::CAPABILITY_* constants.
+One of SearchService::CAPABILITY_* constants.
Returns the original payment create struct passed to -{@see \Ibexa\Contracts\Payment\PaymentServiceInterface::createPayment()} method.
+Returns the original payment create struct.