mirror of
https://gh.wpcy.net/https://github.com/szepeviktor/wordpress-website-lifecycle.git
synced 2026-04-24 05:09:10 +08:00
26 lines
428 B
PHP
26 lines
428 B
PHP
<?php
|
|
|
|
namespace Elementor\Core\Admin;
|
|
|
|
use Elementor\Core\Base\Module;
|
|
|
|
class Admin_Notices extends Module
|
|
{
|
|
public function __construct()
|
|
{
|
|
}
|
|
|
|
public function get_name()
|
|
{
|
|
return 'admin-notices';
|
|
}
|
|
|
|
public function print_admin_notice(array $options, $exclude_pages = [])
|
|
{
|
|
}
|
|
|
|
public static function add_plg_campaign_data($url, $campaign_data)
|
|
{
|
|
return $url;
|
|
}
|
|
}
|