PluginProbe
Maps Plugin using Google Maps for WordPress – WP Google Map / trunk
Maps Plugin using Google Maps for WordPress – WP Google Map vtrunk
1.9.7 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.5.0 1.5.1 1.5.2 1.5.3 All 96 releases
gmap-embed / includes / traits / AdminInitActions.php

AdminInitActions.php in Maps Plugin using Google Maps for WordPress – WP Google Map trunk, at includes/traits/AdminInitActions.php

25 lines 479 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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