diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Ibexa.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Ibexa.html index 2121c177ff..f999842537 100644 --- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Ibexa.html +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Ibexa.html @@ -280,7 +280,7 @@

-
public mixed VERSION = '4.6.27'
+
public mixed VERSION = '4.6.28'
diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Search-Embedding-EmbeddingProviderResolverInterface.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Search-Embedding-EmbeddingProviderResolverInterface.html index 2c64469089..864288f369 100644 --- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Search-Embedding-EmbeddingProviderResolverInterface.html +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Search-Embedding-EmbeddingProviderResolverInterface.html @@ -304,6 +304,84 @@

Tags +
+
+
+ Throws +
+
+ EmbeddingResolverNotFoundException + +
+
+ +
+

+ publicresolveByModelIdentifier() + +

+
+ EmbeddingProviderResolverInterface.php + : + 21 + +
+
+ +
+ + + + + + + +
+
+
+
+
+
+
public resolveByModelIdentifier(string $modelIdentifier) : EmbeddingProviderInterface
+
+
+
+
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
NameTypeDefault valueDescription
+ $modelIdentifier + + string + + - + + - +
+

Return values

+

EmbeddingProviderInterface

+ +
+ Tags + +
@@ -339,6 +417,11 @@
resolve() + +
  • + + resolveByModelIdentifier() +
  • diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-ImageEditor-Event-ConfigureImageOptimizersEvent.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-ImageEditor-Event-ConfigureImageOptimizersEvent.html new file mode 100644 index 0000000000..1a0d0a33ed --- /dev/null +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-ImageEditor-Event-ConfigureImageOptimizersEvent.html @@ -0,0 +1,722 @@ + + + + + ConfigureImageOptimizersEvent | PHP API Reference (Ibexa Documentation) + + + + + + + + + + + + + + + + +
    Copied!
    + + + +
    + +
    + +
    +
    +
    + + + + + + + + +
    +
    +
    + + + +
    +
    + + +
    +

    + ConfigureImageOptimizersEvent

    + +
    + ConfigureImageOptimizersEvent.php + : + 14 + +
    +
    Final
    + +
    + Extends Event +
    + + +
    +

    Event is the base class for classes containing event data.

    + + +
    +

    This class contains no event data. It is used by events that do not pass +state information to an event handler when an event is raised.

    +

    You can call the method stopPropagation() to abort the execution of +further listeners in your event listener.

    + +
    + + + + + + + + + + + + + + +

    + Methods +

    + +
    +

    + public__construct() + +

    +
    + ConfigureImageOptimizersEvent.php + : + 22 + +
    +
    + +
    + + + + + + + +
    +
    +
    +
    +
    +
    +
    public __construct(array<string|int, Optimizer$optimizers)
    +
    +
    +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + + + +
    NameTypeDefault valueDescription
    + $optimizers + + array<string|int, Optimizer> + + - + + - +
    + + +
    +

    + publicaddOptimizer() + +

    +
    + ConfigureImageOptimizersEvent.php + : + 43 + +
    +
    + +
    + + + + + + + +
    +
    +
    +
    +
    +
    +
    public addOptimizer(Optimizer $optimizer) : void
    +
    +
    +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + + + +
    NameTypeDefault valueDescription
    + $optimizer + + Optimizer + + - + + - +
    + + +
    +

    + publicgetOptimizers() + +

    +
    + ConfigureImageOptimizersEvent.php + : + 30 + +
    +
    + +
    + + + + + + + +
    +
    +
    +
    +
    +
    +
    public getOptimizers() : array<string|int, Optimizer>
    +
    +
    +
    +
    +
    +

    Return values

    +

    array<string|int, Optimizer>

    + + +
    +

    + publicisPropagationStopped() + +

    +
    + Event.php + : + 38 + +
    +
    + +
    + + + + + + + +
    +
    +
    +
    +
    +
    +
    public isPropagationStopped() : bool
    +
    +
    +
    +
    +
    +

    Return values

    +

    bool

    + + +
    +

    + publicremoveOptimizer() + +

    +
    + ConfigureImageOptimizersEvent.php + : + 51 + +
    +
    + +
    + + + + + + + +
    +
    +
    +
    +
    +
    +
    public removeOptimizer(Optimizer> $optimizerClass) : void
    +
    +
    +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + + + +
    NameTypeDefault valueDescription
    + $optimizerClass + + Optimizer> + + - + + - +
    + + +
    +

    + publicsetOptimizers() + +

    +
    + ConfigureImageOptimizersEvent.php + : + 38 + +
    +
    + +
    + + + + + + + +
    +
    +
    +
    +
    +
    +
    public setOptimizers(array<string|int, Optimizer$optimizers) : void
    +
    +
    +
    +
    +
    +

    Parameters

    + + + + + + + + + + + + + + + + + +
    NameTypeDefault valueDescription
    + $optimizers + + array<string|int, Optimizer> + + - + + - +
    + + +
    +

    + publicstopPropagation() + +

    +
    + Event.php + : + 50 + +
    +
    +

    Stops the propagation of the event to further event listeners.

    + +
    + + + + + + + +
    +
    +
    +
    +
    +
    +
    public stopPropagation() : void
    +
    +
    +
    +
    +
    +
    +

    If multiple event listeners are connected to the same event, no +further event listener will be triggered once any trigger calls +stopPropagation().

    + +
    + + +
    +
    +
    + + +
    +
    +
    + + + + + + + + + + + diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-ProductCatalog-Values-Product-ProductVariantQuery.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-ProductCatalog-Values-Product-ProductVariantQuery.html index 8f3196a2a6..fca3209a69 100644 --- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-ProductCatalog-Values-Product-ProductVariantQuery.html +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-ProductCatalog-Values-Product-ProductVariantQuery.html @@ -402,7 +402,7 @@

    -
    public getAttributesCriterion() : ProductCriterionAdapter<string|int, CriterionInterface>|null
    +
    public getAttributesCriterion() : ProductCriterionAdapter|null
    @@ -412,7 +412,7 @@

    Return values

    -

    ProductCriterionAdapter<string|int, CriterionInterface>|null

    +

    ProductCriterionAdapter|null

    @@ -550,7 +550,7 @@

    -
    public setAttributesCriterion(ProductCriterionAdapter<string|int, CriterionInterface>|null $criterion) : void
    +
    public setAttributesCriterion(ProductCriterionAdapter|null $criterion) : void
    @@ -575,7 +575,7 @@

    Parameters

    $criterion - ProductCriterionAdapter<string|int, CriterionInterface>|null + ProductCriterionAdapter|null - diff --git a/docs/api/php_api/php_api_reference/index.html b/docs/api/php_api/php_api_reference/index.html index 4587823f13..d3106f33b3 100644 --- a/docs/api/php_api/php_api_reference/index.html +++ b/docs/api/php_api/php_api_reference/index.html @@ -29030,6 +29030,41 @@
  • + +
  • + + +
  • + +