Changeset 3291026
- Timestamp:
- 05/10/2025 09:19:23 PM (11 months ago)
- Location:
- jeero/trunk
- Files:
-
- 4 edited
-
Jeero.php (modified) (2 diffs)
-
includes/Jeero.php (modified) (1 diff)
-
includes/Templates/Templates.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jeero/trunk/Jeero.php
r3268763 r3291026 6 6 * Author: Slim & Dapper 7 7 * Author URI: https://slimndap.com 8 * Version: 1.3 0.58 * Version: 1.31 9 9 * Text Domain: jeero 10 10 * … … 19 19 } 20 20 21 define( 'Jeero\VERSION', '1.3 0.5' );21 define( 'Jeero\VERSION', '1.31' ); 22 22 define( 'Jeero\PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); 23 23 define( 'Jeero\PLUGIN_URI', plugin_dir_url( __FILE__ ) ); -
jeero/trunk/includes/Jeero.php
r3170160 r3291026 75 75 include_once PLUGIN_PATH.'includes/Footprint/Footprint.php'; 76 76 77 78 require_once PLUGIN_PATH.'vendor/autoload.php'; -
jeero/trunk/includes/Templates/Templates.php
r2530728 r3291026 18 18 function render( $template, $data ) { 19 19 20 // Ensure Twig is loaded before first use to prevent redeclaration of global helpers. 21 if ( ! class_exists(\Twig\Environment::class) ) { 22 require_once \Jeero\PLUGIN_PATH . '/vendor/autoload.php'; 23 } 20 24 $loader = new \Twig\Loader\ArrayLoader( array( 21 25 'jeero.html' => $template, -
jeero/trunk/readme.txt
r3268764 r3291026 96 96 == Changelog == 97 97 98 = 1.31 = 99 * Avoid conflicts with plugins and themes that use older versions of Twig. 100 98 101 = 1.30 = 99 102 * Added support for imports to custom post types. … … 263 266 == Upgrade Notice == 264 267 268 = 1.31 = 269 * Avoids conflicts with plugins and themes that use older versions of Twig. 270 265 271 = 1.30.5 = 266 272 Fixes a problem with non-existing javascript sourcemaps.
Note: See TracChangeset
for help on using the changeset viewer.