| 1 |
<?php |
| 2 |
|
| 3 |
namespace WGMSRM\Traits; |
| 4 |
|
| 5 |
use WGMSRM\Classes\Migration; |
| 6 |
|
| 7 |
if (!defined('ABSPATH')) { |
| 8 |
exit; |
| 9 |
} |
| 10 |
|
| 11 |
/** |
| 12 |
* Trait InitActions: Init action hooks defined here |
| 13 |
*/ |
| 14 |
trait AdminInitActions |
| 15 |
{ |
| 16 |
|
| 17 |
public function do_admin_init_actions() |
| 18 |
{ |
| 19 |
// Security: Only allow admins to trigger migrations or admin actions |
| 20 |
// if (!current_user_can('manage_options')) { |
| 21 |
// wp_die(esc_html__('You do not have permission to access this page.', 'gmap-embed')); |
| 22 |
// } |
| 23 |
} |
| 24 |
} |
| 25 |
|