Changeset 3490358
- Timestamp:
- 03/24/2026 08:39:49 PM (8 days ago)
- Location:
- praison-file-content-git
- Files:
-
- 2 added
- 4 edited
- 1 copied
-
tags/1.4.0 (copied) (copied from praison-file-content-git/trunk)
-
tags/1.4.0/praisonpressgit.php (modified) (2 diffs)
-
tags/1.4.0/src/Core/Bootstrap.php (modified) (1 diff)
-
tags/1.4.0/src/Export/AutoExporter.php (added)
-
trunk/praisonpressgit.php (modified) (2 diffs)
-
trunk/src/Core/Bootstrap.php (modified) (1 diff)
-
trunk/src/Export/AutoExporter.php (added)
Legend:
- Unmodified
- Added
- Removed
-
praison-file-content-git/tags/1.4.0/praisonpressgit.php
r3490347 r3490358 3 3 * Plugin Name: PraisonAI Git Posts 4 4 * Description: Load WordPress content from files (Markdown, JSON, YAML) without database writes, with Git-based version control 5 * Version: 1. 3.05 * Version: 1.4.0 6 6 * Author: MervinPraison 7 7 * Author URI: https://mer.vin … … 13 13 14 14 // Define constants 15 define('PRAISON_VERSION', '1. 3.0');15 define('PRAISON_VERSION', '1.4.0'); 16 16 define('PRAISON_PLUGIN_DIR', __DIR__); 17 17 define('PRAISON_PLUGIN_URL', trailingslashit(plugins_url('', __FILE__))); -
praison-file-content-git/tags/1.4.0/src/Core/Bootstrap.php
r3490347 r3490358 102 102 // Admin notices 103 103 add_action('admin_notices', [$this, 'showAdminNotices']); 104 105 // Auto-export on publish (requires [sync] config in site-config.ini) 106 if (file_exists(PRAISON_PLUGIN_DIR . '/src/Export/AutoExporter.php')) { 107 $autoExporter = new \PraisonPress\Export\AutoExporter(); 108 $autoExporter->register(); 109 } 104 110 } 105 111 -
praison-file-content-git/trunk/praisonpressgit.php
r3490347 r3490358 3 3 * Plugin Name: PraisonAI Git Posts 4 4 * Description: Load WordPress content from files (Markdown, JSON, YAML) without database writes, with Git-based version control 5 * Version: 1. 3.05 * Version: 1.4.0 6 6 * Author: MervinPraison 7 7 * Author URI: https://mer.vin … … 13 13 14 14 // Define constants 15 define('PRAISON_VERSION', '1. 3.0');15 define('PRAISON_VERSION', '1.4.0'); 16 16 define('PRAISON_PLUGIN_DIR', __DIR__); 17 17 define('PRAISON_PLUGIN_URL', trailingslashit(plugins_url('', __FILE__))); -
praison-file-content-git/trunk/src/Core/Bootstrap.php
r3490347 r3490358 102 102 // Admin notices 103 103 add_action('admin_notices', [$this, 'showAdminNotices']); 104 105 // Auto-export on publish (requires [sync] config in site-config.ini) 106 if (file_exists(PRAISON_PLUGIN_DIR . '/src/Export/AutoExporter.php')) { 107 $autoExporter = new \PraisonPress\Export\AutoExporter(); 108 $autoExporter->register(); 109 } 104 110 } 105 111
Note: See TracChangeset
for help on using the changeset viewer.