From e9d4ae1a49d9d855b3277d0297209f06451f8c63 Mon Sep 17 00:00:00 2001 From: Guy Sartorelli <36352093+GuySartorelli@users.noreply.github.com> Date: Wed, 11 Dec 2024 10:30:40 +1300 Subject: [PATCH] API Deprecate API that's changing in CMS 6 (#53) Note that while this recipe won't be supported in CMS 6, the API is changing in superclasses which live in modules that WILL be supported, which means this API will change regardless. --- app/src/BlocksPage.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/src/BlocksPage.php b/app/src/BlocksPage.php index aa68b73..1d8cddd 100644 --- a/app/src/BlocksPage.php +++ b/app/src/BlocksPage.php @@ -11,5 +11,8 @@ class BlocksPage extends Page private static $class_description = 'A modular page composed of content blocks'; + /** + * @deprecated 5.4.0 Will be renamed to cms_icon_class + */ private static $icon_class = 'font-icon-p-alt'; }