PluginProbe
GamiPress – Gamification plugin to reward points, badges & ranks in WordPress, now with AI / 8.0.3
GamiPress – Gamification plugin to reward points, badges & ranks in WordPress, now with AI v8.0.3
8.0.3 8.0.1 8.0.2 8.0.0 7.9.9.7 7.9.9.6 7.9.9.5 7.9.9.4 7.9.9.3 7.9.9.2 7.9.9.1 7.9.9 7.9.8 7.9.7 7.9.6 7.9.5 7.9.4 7.9.3 7.9.2 7.9.1 7.9.0 7.8.9 7.8.8 7.8.7 7.8.6 All 45 releases
← All changes | integrations/learndash/includes/admin.php +29 -0 7.9.28.0.3 View file →
@@ -1,0 +1,29 @@
1 +<?php
2 +/**
3 + * Admin
4 + *
5 + * @package GamiPress\LearnDash\Admin
6 + * @since 1.0.0
7 + */
8 +// Exit if accessed directly
9 +if( !defined( 'ABSPATH' ) ) exit;
10 +
11 +require_once GAMIPRESS_LD_DIR . 'includes/admin/recount-activity.php';
12 +
13 +/**
14 + * LearnDash automatic updates
15 + *
16 + * @since 1.0.0
17 + *
18 + * @param array $automatic_updates_plugins
19 + *
20 + * @return array
21 + */
22 +function gamipress_ld_automatic_updates( $automatic_updates_plugins ) {
23 +
24 + $automatic_updates_plugins['gamipress'] = __( 'LearnDash integration', 'gamipress' );
25 +
26 + return $automatic_updates_plugins;
27 +
28 +}
29 +add_filter( 'gamipress_automatic_updates_plugins', 'gamipress_ld_automatic_updates' );