CachePlugins.php
1 week ago
CurrencySwitcherUseTwigTemplate.php
1 week ago
ExportImport.php
1 week ago
MultiCurrencyMissing.php
1 week ago
RestrictedScreens.php
1 week ago
Review.php
1 week ago
TranslationControlMovedNotice.php
1 week ago
WizardNotice.php
1 week ago
WizardNotice.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WCML\AdminNotices; |
| 4 | |
| 5 | class WizardNotice extends \WCML_Menu_Wrap_Base { |
| 6 | |
| 7 | protected function get_child_model() { |
| 8 | return [ |
| 9 | 'strings' => [ |
| 10 | 'title' => \WCML_Admin_Menus::getWcmlLabel(), |
| 11 | ], |
| 12 | 'is_standalone' => false, |
| 13 | 'content' => ( new \WCML_Setup_Notice_UI() )->get_view( 'setup/wizard-notice.twig' ), |
| 14 | ]; |
| 15 | } |
| 16 | |
| 17 | } |
| 18 |