mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-21 04:14:34 +08:00
* Added `Notice_Base` and `Notices` component to core module
* Always load core module and load all other modules based on legacy status
* added filter in customizer settings
* added bubble / pimple in admin menu to indicate upgrade
* added `Dismissible_Deprecated_Nag` notice to none legacy pages
* added `Dismissible_Deprecated_Nag` notice to legacy pages
* Added `Upgrade` component to legacy module
includes:
* loading of notices
* introduction modal
* admin menu pimple
* customizer notice
* pointer
* confirmation modal
* upgrade logic and handler
* ✅ Fixed legacy module test
* added `local:quick-run` command to run in browser mode
* update phpunit workflow
* ensure wp.ajax is loaded
* wrong translations
* Updated strings
* added "Equally"
* remove unused test
21 lines
297 B
PHP
21 lines
297 B
PHP
<?php
|
|
namespace EA11y\Tests\Modules\Logs;
|
|
|
|
use EA11y\Tests\Helpers\Module_Test_Base;
|
|
|
|
/**
|
|
* Class Module
|
|
*/
|
|
class Module extends Module_Test_Base {
|
|
public $name = 'legacy';
|
|
|
|
public $components = [
|
|
'Frontend',
|
|
'Customizer',
|
|
'Settings',
|
|
'Admin',
|
|
'Upgrade'
|
|
];
|
|
|
|
public $routes = [];
|
|
}
|