mirror of
https://gh.wpcy.net/https://github.com/szepeviktor/wordpress-website-lifecycle.git
synced 2026-04-25 04:52:19 +08:00
17 lines
224 B
PHP
17 lines
224 B
PHP
<?php
|
|
|
|
namespace Elementor\Core\Admin;
|
|
|
|
use Elementor\Core\Base\Module;
|
|
|
|
class Feedback extends Module
|
|
{
|
|
public function __construct()
|
|
{
|
|
}
|
|
|
|
public function get_name()
|
|
{
|
|
return 'feedback';
|
|
}
|
|
}
|