Changeset 3450110
- Timestamp:
- 01/30/2026 03:11:37 AM (6 weeks ago)
- Location:
- liaison-site-prober/trunk
- Files:
-
- 1 added
- 1 deleted
- 4 edited
-
README.txt (modified) (2 diffs)
-
includes/class-liaison-rest-controller.php (added)
-
includes/class-liaison-site-prober-actions.php (modified) (1 diff)
-
includes/class-liaison-site-prober.php (modified) (1 diff)
-
includes/class-liaison-site-prober.php.bak (deleted)
-
liaison-site-prober.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
liaison-site-prober/trunk/README.txt
r3419679 r3450110 5 5 Requires at least: 6.8 6 6 Tested up to: 6.8 7 Stable tag: 1. 1.07 Stable tag: 1.2.0 8 8 License: GPLv3 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 66 66 == Changelog == 67 67 68 = 1.2.0 = 69 - Added REST API endpoint: `/wp-json/site-prober/v1/logs` 70 - Enables JavaScript applications to retrieve action logs. 71 68 72 = 1.1.0 = 69 73 * Add PHPUnit test cases. -
liaison-site-prober/trunk/includes/class-liaison-site-prober-actions.php
r3416968 r3450110 34 34 35 35 // register hooks to capture actions 36 //add_action( 'export_wp', [ $this, 'wpsp_export_csv' ] );37 36 38 37 if ( defined('WP_RUNNING_PHPUNIT') ) { -
liaison-site-prober/trunk/includes/class-liaison-site-prober.php
r3408825 r3450110 118 118 119 119 $this->loader = new LIAISIPR_Loader(); 120 121 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-liaison-rest-controller.php'; 122 add_action( 'rest_api_init', function () { 123 $controller = new LIAISIPR_REST_Controller(); 124 $controller->register_routes(); 125 } ); 126 120 127 121 128 } -
liaison-site-prober/trunk/liaison-site-prober.php
r3419679 r3450110 2 2 3 3 /** 4 * Plugin Name: Liaison Site Prober 5 * Plugin URI: https://github.com/liaisontw/wp-site-prober_svn_git 6 * Description: Simple activity / audit logger for WordPress. Creates activity table, hooks common events, admin UI and CSV export. 7 * Version: 1.2.1 8 * Author: liason 9 * Author URI: https://github.com/liaisontw/ 10 * License: GPLv3 or later 11 * License URI: https://www.gnu.org/licenses/gpl-3.0.html 12 * Text Domain: liaison-site-prober 13 * Domain Path: /languages 14 * 4 15 * The plugin bootstrap file 5 16 * … … 14 25 * 15 26 * @wordpress-plugin 16 * Plugin Name: Liaison Site Prober17 * Plugin URI: https://github.com/liaisontw/liaison-site-prober_svn_git18 * Description: Simple activity / audit logger for WordPress. Creates activity table, hooks common events, admin UI and CSV export.19 * Version: 1.1.020 * Author: liason21 * Author URI: https://github.com/liaisontw/22 * License: GPLv3 or later23 * License URI: https://www.gnu.org/licenses/gpl-3.0.html24 * Text Domain: liaison-site-prober25 * Domain Path: /languages26 27 */ 27 28 … … 36 37 * Rename this for your plugin and update it as you release new versions. 37 38 */ 38 define( 'LIAISIPR_VERSION', '1. 1.0' );39 define( 'LIAISIPR_VERSION', '1.2.0' ); 39 40 40 41 /**
Note: See TracChangeset
for help on using the changeset viewer.