Skip to content

Commit

Permalink
Merge pull request #2991 from creative-commoners/pulls/5/deprecate-si…
Browse files Browse the repository at this point in the history
…tetreextension

API Deprecate SiteTreeExtension
  • Loading branch information
GuySartorelli authored Aug 25, 2024
2 parents 370907b + 5e3e847 commit df4bb11
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions code/Model/SiteTreeExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,29 @@

use SilverStripe\ORM\DataExtension;
use SilverStripe\Security\Member;
use SilverStripe\Dev\Deprecation;
use SilverStripe\Core\Extension;

/**
* Plug-ins for additional functionality in your SiteTree classes.
*
* @template T of SiteTree
* @extends DataExtension<T>
* @deprecated 5.3.0 Subclass SilverStripe\Core\Extension\Extension instead
*/
abstract class SiteTreeExtension extends DataExtension
{
public function __construct()
{
// Wrapping with Deprecation::withNoReplacement() to avoid triggering deprecation notices
// as we are unable to update existing subclasses of this class until a new major
// unless we add in the pointless empty methods that are in this class
Deprecation::withNoReplacement(function () {
$class = Extension::class;
Deprecation::notice('5.3.0', "Subclass $class instead", Deprecation::SCOPE_CLASS);
});
parent::__construct();
}

/**
* Hook called before the page's {@link Versioned::publishSingle()} action is completed
Expand Down

0 comments on commit df4bb11

Please sign in to comment.