mirror of
https://github.com/proelements/proelements.git
synced 2026-04-05 20:13:47 +00:00
18 lines
377 B
PHP
18 lines
377 B
PHP
<?php
|
|
namespace ElementorPro\Core\Editor;
|
|
|
|
use Elementor\Core\Editor\Notice_Bar as Base_Notice_Bar;
|
|
use ElementorPro\License\Admin;
|
|
use ElementorPro\License\API as License_API;
|
|
use ElementorPro\Plugin;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
class Notice_Bar extends Base_Notice_Bar {
|
|
protected function get_init_settings() {
|
|
return [];
|
|
}
|
|
}
|