Changeset 3444010
- Timestamp:
- 01/21/2026 11:19:48 AM (5 weeks ago)
- Location:
- changeloger
- Files:
-
- 4 edited
-
tags/1.4.0/changeloger.php (modified) (1 diff)
-
tags/1.4.0/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/changeloger.php (modified) (1 diff)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
changeloger/tags/1.4.0/changeloger.php
r3443906 r3444010 20 20 } 21 21 22 if (! function_exists('cha_fs')) { 23 // Create a helper function for easy SDK access. 24 function cha_fs() 25 { 26 global $cha_fs; 27 28 if (! isset($cha_fs)) { 29 // Include Freemius SDK. 30 require_once dirname(__FILE__) . '/vendor/autoload.php'; 31 $cha_fs = fs_dynamic_init(array( 32 'id' => '18274', 33 'slug' => 'changeloger', 34 'premium_slug' => 'changeloger-pro', 35 'type' => 'plugin', 36 'public_key' => 'pk_776f0d8257af65cd6c37c2b92c97b', 37 'premium_suffix' => 'pro', 38 'is_premium' => false, 39 'has_addons' => false, 40 'has_paid_plans' => true, 41 'is_org_compliant' => true, 42 'menu' => array( 43 'slug' => 'changeloger', 44 'first-path' => 'admin.php?page=changeloger', 45 'contact' => false, 46 'support' => false, 47 ), 48 'parallel_activation' => array( 49 'enabled' => true, 50 'premium_version_basename' => 'changeloger-pro/changeloger-pro.php', 51 ), 52 )); 53 } 54 55 return $cha_fs; 56 } 57 58 // Init Freemius. 59 cha_fs(); 60 61 // Add filter to hide the Freemius badge from the plugin page. 62 add_filter('hide_freemius_powered_by', '__return_true'); 63 64 // Signal that SDK was initiated. 65 do_action('cha_fs_loaded'); 22 if ( function_exists( 'cha_fs' ) ) { 23 cha_fs()->set_basename( false, __FILE__ ); 24 } else { 25 // Create a helper function for easy SDK access. 26 function cha_fs() { 27 global $cha_fs; 28 29 if ( ! isset( $cha_fs ) ) { 30 // Include Freemius SDK. 31 require_once dirname( __FILE__ ) . '/vendor/autoload.php'; 32 33 $cha_fs = fs_dynamic_init( 34 array( 35 'id' => '18274', 36 'slug' => 'changeloger', 37 'premium_slug' => 'changeloger-pro', 38 'type' => 'plugin', 39 'public_key' => 'pk_776f0d8257af65cd6c37c2b92c97b', 40 'premium_suffix' => 'pro', 41 'is_premium' => false, 42 'has_addons' => false, 43 'has_paid_plans' => true, 44 'is_org_compliant' => true, 45 'menu' => array( 46 'slug' => 'changeloger', 47 'first-path' => 'admin.php?page=changeloger', 48 'contact' => false, 49 'support' => false, 50 ), 51 'parallel_activation' => array( 52 'enabled' => true, 53 'premium_version_basename' => 'changeloger-pro/changeloger-pro.php', 54 ), 55 ) 56 ); 57 } 58 59 return $cha_fs; 60 } 61 62 cha_fs()->add_filter( 'hide_freemius_powered_by', '__return_true' ); 63 do_action( 'cha_fs_loaded' ); 66 64 } 67 65 -
changeloger/tags/1.4.0/vendor/composer/installed.php
r3443906 r3444010 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => ' 2136973eb203f7bfc5f128ba8b46ef215f186803',6 'reference' => '8fc6cd81c73ac6f5cff7faa8d4302ed1ad9a5c8b', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-main', 15 15 'version' => 'dev-main', 16 'reference' => ' 2136973eb203f7bfc5f128ba8b46ef215f186803',16 'reference' => '8fc6cd81c73ac6f5cff7faa8d4302ed1ad9a5c8b', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', -
changeloger/trunk/changeloger.php
r3443916 r3444010 20 20 } 21 21 22 if (! function_exists('cha_fs')) { 23 // Create a helper function for easy SDK access. 24 function cha_fs() 25 { 26 global $cha_fs; 27 28 if (! isset($cha_fs)) { 29 // Include Freemius SDK. 30 require_once dirname(__FILE__) . '/vendor/autoload.php'; 31 $cha_fs = fs_dynamic_init(array( 32 'id' => '18274', 33 'slug' => 'changeloger', 34 'premium_slug' => 'changeloger-pro', 35 'type' => 'plugin', 36 'public_key' => 'pk_776f0d8257af65cd6c37c2b92c97b', 37 'premium_suffix' => 'pro', 38 'is_premium' => false, 39 'has_addons' => false, 40 'has_paid_plans' => true, 41 'is_org_compliant' => true, 42 'menu' => array( 43 'slug' => 'changeloger', 44 'first-path' => 'admin.php?page=changeloger', 45 'contact' => false, 46 'support' => false, 47 ), 48 'parallel_activation' => array( 49 'enabled' => true, 50 'premium_version_basename' => 'changeloger-pro/changeloger-pro.php', 51 ), 52 )); 53 } 54 55 return $cha_fs; 56 } 57 58 // Init Freemius. 59 cha_fs(); 60 61 // Add filter to hide the Freemius badge from the plugin page. 62 add_filter('hide_freemius_powered_by', '__return_true'); 63 64 // Signal that SDK was initiated. 65 do_action('cha_fs_loaded'); 22 if ( function_exists( 'cha_fs' ) ) { 23 cha_fs()->set_basename( false, __FILE__ ); 24 } else { 25 // Create a helper function for easy SDK access. 26 function cha_fs() { 27 global $cha_fs; 28 29 if ( ! isset( $cha_fs ) ) { 30 // Include Freemius SDK. 31 require_once dirname( __FILE__ ) . '/vendor/autoload.php'; 32 33 $cha_fs = fs_dynamic_init( 34 array( 35 'id' => '18274', 36 'slug' => 'changeloger', 37 'premium_slug' => 'changeloger-pro', 38 'type' => 'plugin', 39 'public_key' => 'pk_776f0d8257af65cd6c37c2b92c97b', 40 'premium_suffix' => 'pro', 41 'is_premium' => false, 42 'has_addons' => false, 43 'has_paid_plans' => true, 44 'is_org_compliant' => true, 45 'menu' => array( 46 'slug' => 'changeloger', 47 'first-path' => 'admin.php?page=changeloger', 48 'contact' => false, 49 'support' => false, 50 ), 51 'parallel_activation' => array( 52 'enabled' => true, 53 'premium_version_basename' => 'changeloger-pro/changeloger-pro.php', 54 ), 55 ) 56 ); 57 } 58 59 return $cha_fs; 60 } 61 62 cha_fs()->add_filter( 'hide_freemius_powered_by', '__return_true' ); 63 do_action( 'cha_fs_loaded' ); 66 64 } 67 65 -
changeloger/trunk/vendor/composer/installed.php
r3443916 r3444010 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => ' 2136973eb203f7bfc5f128ba8b46ef215f186803',6 'reference' => '8fc6cd81c73ac6f5cff7faa8d4302ed1ad9a5c8b', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-main', 15 15 'version' => 'dev-main', 16 'reference' => ' 2136973eb203f7bfc5f128ba8b46ef215f186803',16 'reference' => '8fc6cd81c73ac6f5cff7faa8d4302ed1ad9a5c8b', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.