mirror of
https://ghproxy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-07-21 12:16:59 +08:00
* [APP-2207] add dashboard widget * [APP-2207] add dashboard widget * Update assets/dev/css/ea11y-scanner-admin.scss Co-authored-by: Rami Yushuvaev <92088692+rami-elementor@users.noreply.github.com> * Update assets/dev/css/widgets/_ally_dashboard_widget.scss Co-authored-by: Rami Yushuvaev <92088692+rami-elementor@users.noreply.github.com> * Update assets/dev/css/widgets/_ally_dashboard_widget.scss Co-authored-by: Rami Yushuvaev <92088692+rami-elementor@users.noreply.github.com> * Update assets/dev/css/widgets/_ally_dashboard_widget.scss Co-authored-by: Rami Yushuvaev <92088692+rami-elementor@users.noreply.github.com> * [APP-0000] add change log items * Update modules/dashboard/widgets/ally-dashboard-widget.php Co-authored-by: Rami Yushuvaev <92088692+rami-elementor@users.noreply.github.com> * Release/v4.0.2 --------- Co-authored-by: Rami Yushuvaev <92088692+rami-elementor@users.noreply.github.com>
24 lines
441 B
PHP
24 lines
441 B
PHP
<?php
|
|
|
|
namespace EA11y\Modules\Dashboard;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
|
|
use EA11y\Classes\Module_Base;
|
|
use EA11y\Modules\Dashboard\Widgets\Ally_Dashboard_Widget;
|
|
|
|
class Module extends Module_Base {
|
|
public function get_name(): string {
|
|
return 'dashboard';
|
|
}
|
|
|
|
/**
|
|
* Module constructor.
|
|
*/
|
|
public function __construct() {
|
|
// Add Ally dashboard widget
|
|
Ally_Dashboard_Widget::init();
|
|
}
|
|
}
|