Changeset 3473540
- Timestamp:
- 03/03/2026 10:53:43 AM (4 weeks ago)
- Location:
- alt-manager
- Files:
-
- 4 edited
-
tags/1.8.2/alt-manager.php (modified) (2 diffs)
-
tags/1.8.2/inc/alm-empty-generator.php (modified) (2 diffs)
-
trunk/alt-manager.php (modified) (2 diffs)
-
trunk/inc/alm-empty-generator.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
alt-manager/tags/1.8.2/alt-manager.php
r3406338 r3473540 30 30 require_once dirname( __FILE__ ) . '/freemius/start.php'; 31 31 $am_fs = fs_dynamic_init( array( 32 'id' => '5548',33 'slug' => 'alt-manager',34 'type' => 'plugin',35 'navigation' => 'tabs',36 'public_key' => 'pk_07c4f76da780308f88546ce3da78a',37 'is_premium' => false,38 'premium_suffix' => 'premium plan',39 'has_addons' => false,40 'has_paid_plans' => true,41 'menu' => array(32 'id' => '5548', 33 'slug' => 'alt-manager', 34 'type' => 'plugin', 35 'navigation' => 'tabs', 36 'public_key' => 'pk_07c4f76da780308f88546ce3da78a', 37 'is_premium' => false, 38 'premium_suffix' => 'premium plan', 39 'has_addons' => false, 40 'has_paid_plans' => true, 41 'menu' => array( 42 42 'slug' => 'alt-manager', 43 43 'parent' => array( … … 45 45 ), 46 46 ), 47 'is_live' => true, 47 'is_live' => true, 48 'is_org_compliant' => true, 48 49 ) ); 49 50 } -
alt-manager/tags/1.8.2/inc/alm-empty-generator.php
r3406338 r3473540 333 333 334 334 $init = new alm_dom_generator(); 335 add_action( 'wp_footer', function() {335 function alm_enqueue_frontend_script() { 336 336 if ( is_admin() ) { 337 337 return; … … 390 390 'titleText' => $title_output, 391 391 ) ); 392 }, PHP_INT_MAX ); 392 } 393 394 add_action( 'wp_enqueue_scripts', 'alm_enqueue_frontend_script', 20 ); -
alt-manager/trunk/alt-manager.php
r3406338 r3473540 30 30 require_once dirname( __FILE__ ) . '/freemius/start.php'; 31 31 $am_fs = fs_dynamic_init( array( 32 'id' => '5548',33 'slug' => 'alt-manager',34 'type' => 'plugin',35 'navigation' => 'tabs',36 'public_key' => 'pk_07c4f76da780308f88546ce3da78a',37 'is_premium' => false,38 'premium_suffix' => 'premium plan',39 'has_addons' => false,40 'has_paid_plans' => true,41 'menu' => array(32 'id' => '5548', 33 'slug' => 'alt-manager', 34 'type' => 'plugin', 35 'navigation' => 'tabs', 36 'public_key' => 'pk_07c4f76da780308f88546ce3da78a', 37 'is_premium' => false, 38 'premium_suffix' => 'premium plan', 39 'has_addons' => false, 40 'has_paid_plans' => true, 41 'menu' => array( 42 42 'slug' => 'alt-manager', 43 43 'parent' => array( … … 45 45 ), 46 46 ), 47 'is_live' => true, 47 'is_live' => true, 48 'is_org_compliant' => true, 48 49 ) ); 49 50 } -
alt-manager/trunk/inc/alm-empty-generator.php
r3406338 r3473540 333 333 334 334 $init = new alm_dom_generator(); 335 add_action( 'wp_footer', function() {335 function alm_enqueue_frontend_script() { 336 336 if ( is_admin() ) { 337 337 return; … … 390 390 'titleText' => $title_output, 391 391 ) ); 392 }, PHP_INT_MAX ); 392 } 393 394 add_action( 'wp_enqueue_scripts', 'alm_enqueue_frontend_script', 20 );
Note: See TracChangeset
for help on using the changeset viewer.