Skip to content

Commit

Permalink
Merge branch '5' into 6
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 22, 2024
2 parents bc77fd4 + 35e3eb9 commit 0c79932
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/Extensions/ElementalLeftAndMainExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,23 @@

use SilverStripe\Admin\LeftAndMain;
use SilverStripe\Core\Extension;
use SilverStripe\Dev\Deprecation;
use SilverStripe\View\Requirements;

/**
* @extends Extension<LeftAndMain>
* @deprecated 5.3.0 Will be replaced with YAML configuration
*/
class ElementalLeftAndMainExtension extends Extension
{
public function __construct()
{
Deprecation::withNoReplacement(
fn () => Deprecation::notice('5.3.0', 'Will be replaced with YAML configuration', Deprecation::SCOPE_CLASS)
);
parent::__construct();
}

public function init()
{
Requirements::add_i18n_javascript('dnadesign/silverstripe-elemental:client/lang');
Expand Down

0 comments on commit 0c79932

Please sign in to comment.