diff --git a/classes/collection/ProductCollection.php b/classes/collection/ProductCollection.php index 14961285..6c1b49a8 100644 --- a/classes/collection/ProductCollection.php +++ b/classes/collection/ProductCollection.php @@ -29,6 +29,9 @@ * * Compare for Shopaholic * @method $this compare() + * + * Viewed products for Shopaholic + * @method $this viewed() */ class ProductCollection extends ElementCollection { diff --git a/components/ProductData.php b/components/ProductData.php index 667d048a..55edb925 100644 --- a/components/ProductData.php +++ b/components/ProductData.php @@ -14,6 +14,10 @@ * @method array onAddToCompare() * @method array onRemoveFromCompare() * @method void onClearCompareList() + * + * Viewed products for Shopaholic + * @method array onRemoveFromViewedProductList() + * @method void onClearViewedProductList() */ class ProductData extends ElementData { diff --git a/components/ProductList.php b/components/ProductList.php index 5f6320e7..61c8b9b5 100644 --- a/components/ProductList.php +++ b/components/ProductList.php @@ -18,6 +18,10 @@ * @method array onAddToCompare() * @method array onRemoveFromCompare() * @method void onClearCompareList() + * + * Viewed products for Shopaholic + * @method array onRemoveFromViewedProductList() + * @method void onClearViewedProductList() */ class ProductList extends SortingElementList { diff --git a/components/ProductPage.php b/components/ProductPage.php index a84f9514..1bd934af 100644 --- a/components/ProductPage.php +++ b/components/ProductPage.php @@ -16,6 +16,10 @@ * @method array onAddToCompare() * @method array onRemoveFromCompare() * @method void onClearCompareList() + * + * Viewed products for Shopaholic + * @method array onRemoveFromViewedProductList() + * @method void onClearViewedProductList() */ class ProductPage extends ElementPage { diff --git a/updates/version.yaml b/updates/version.yaml index 7bee5891..5dde7648 100644 --- a/updates/version.yaml +++ b/updates/version.yaml @@ -27,4 +27,6 @@ 1.6.0: - 'Add integration with "Compare for Shopaholic"' 1.7.0: - - 'Added translation into French. Thanks for contribution philmarc.' \ No newline at end of file + - 'Added translation into French. Thanks for contribution philmarc.' +1.8.0: + - 'Add integration with "Viewed products for Shopaholic" plugin' \ No newline at end of file