Changeset 3479013
- Timestamp:
- 03/10/2026 11:32:09 AM (3 weeks ago)
- Location:
- export-wp-page-to-static-html/trunk
- Files:
-
- 9 edited
-
README.txt (modified) (1 diff)
-
export-wp-page-to-static-html.php (modified) (2 diffs)
-
includes/class-diagnostic.php (modified) (1 diff)
-
includes/class-exporter.php (modified) (1 diff)
-
includes/class-ftp-uploader.php (modified) (1 diff)
-
includes/class-pdf-generator.php (modified) (1 diff)
-
includes/class-quick-export.php (modified) (1 diff)
-
includes/class-rest.php (modified) (1 diff)
-
includes/class-whats-new.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
export-wp-page-to-static-html/trunk/README.txt
r3479004 r3479013 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 6.0.6. 07 Stable tag: 6.0.6.1 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
export-wp-page-to-static-html/trunk/export-wp-page-to-static-html.php
r3479004 r3479013 4 4 * Plugin URI: https://myrecorp.com 5 5 * Description: Export WP Pages to Static HTML is the most flexible static HTML export plugin for WordPress. Unlike full-site generators, Export WP Pages to Static HTML gives you surgical control — export exactly the posts, pages, or custom post types you need, in the status you want, as the user role you choose. 6 * Version: 6.0.6. 06 * Version: 6.0.6.1 7 7 * Author: ReCorp 8 8 * Author URI: https://www.upwork.com/fl/rayhan1 … … 20 20 load_plugin_textdomain('wp-to-html', false, dirname(plugin_basename(__FILE__)) . '/languages'); 21 21 }); 22 define('WP_TO_HTML_VERSION', '6.0.6. 0');22 define('WP_TO_HTML_VERSION', '6.0.6.1'); 23 23 define('WP_TO_HTML_PATH', plugin_dir_path(__FILE__)); 24 24 define('WP_TO_HTML_URL', plugin_dir_url(__FILE__)); -
export-wp-page-to-static-html/trunk/includes/class-diagnostic.php
r3474640 r3479013 1 1 <?php 2 2 namespace WpToHtml; 3 3 4 4 /** 5 5 * System diagnostics + preflight "can I run?" checks. -
export-wp-page-to-static-html/trunk/includes/class-exporter.php
r3479004 r3479013 3 3 4 4 class Exporter { 5 5 6 6 private $group_assets; 7 7 private $log_file; -
export-wp-page-to-static-html/trunk/includes/class-ftp-uploader.php
r3474640 r3479013 1 1 <?php 2 2 namespace WpToHtml; 3 3 4 4 /** 5 5 * FTP uploader for WP to HTML. -
export-wp-page-to-static-html/trunk/includes/class-pdf-generator.php
r3479004 r3479013 1 1 <?php 2 /** 2 /** 3 3 * PDF Generator — adds a "Generate PDF" button to the admin bar and a shortcode. 4 4 * -
export-wp-page-to-static-html/trunk/includes/class-quick-export.php
r3477356 r3479013 1 1 <?php 2 2 namespace WpToHtml; 3 3 4 4 /** 5 5 * Quick Export — adds "Export to Static HTML" buttons throughout WP admin: -
export-wp-page-to-static-html/trunk/includes/class-rest.php
r3477356 r3479013 795 795 796 796 $params = (array) $request->get_json_params(); 797 797 798 798 // Scope options: 799 799 // - full_site: export all public post types -
export-wp-page-to-static-html/trunk/includes/class-whats-new.php
r3479004 r3479013 4 4 /** 5 5 * Renders the "What's New" admin page shown after plugin updates. 6 */ 6 */ 7 7 class WhatsNew { 8 8
Note: See TracChangeset
for help on using the changeset viewer.