mirror of
https://gh.wpcy.net/https://github.com/szepeviktor/wordpress-website-lifecycle.git
synced 2026-04-24 05:09:10 +08:00
19 lines
290 B
PHP
19 lines
290 B
PHP
<?php
|
|
|
|
namespace Elementor\Modules\Promotions;
|
|
|
|
use Elementor\Core\Base\Module as Base_Module;
|
|
|
|
class Module extends Base_Module
|
|
{
|
|
const ADMIN_MENU_PRIORITY = 100;
|
|
|
|
public function __construct()
|
|
{
|
|
}
|
|
|
|
public function get_name()
|
|
{
|
|
return 'promotions';
|
|
}
|
|
}
|