*/
+// Add hooksHelp.html file to admin Management hooks output
+add_filter('glm-member-db-admin-management-hooksHelp', function($content) {
+
+ // Read in this plugin/addon hook help file
+ $fname = GLM_MEMBERS_SERVERSTATS_PLUGIN_PATH.'/setup/hooksHelp.html';
+ if (is_file($fname)) {
+ $hooksHelp = file_get_contents($fname);
+ if ($hooksHelp != false) {
+ $content .= $hooksHelp;
+ }
+ }
+ return $content;
+ },
+ 10,
+ 2
+);
+
// Add server stats summary and graphs to main dashboard widget
add_filter( 'glm-member-db-dashboard-widget-othernotices', function( $content ) {
$content .= $this->controller('dashboardWidget', 'serverStats', array('location' => 'widget'));