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 / PluginsLoadedActions.php

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

28 lines 445 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\Database;
6
7 if (!defined('ABSPATH')) {
8 exit;
9 }
10
11 /**
12 * Trait PluginsLoadedActions
13 */
14 trait PluginsLoadedActions
15 {
16
17 /**
18 * Fires after plugins loaded
19 */
20 public function wpgmap_do_after_plugins_loaded()
21 {
22 // Defensive: Only allow if user has install_plugins capability (for DB changes)
23 if (current_user_can('install_plugins')) {
24 new Database();
25 }
26 }
27 }
28