Version List
WordPress Plugin to send current Versions to VA Api
by vonAffenfels · github.com/vonaffenfels/wp-version-list-plugin
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/vonaffenfels/wp-version-list-plugin/archive/refs/heads/master.zipWordPress Plugin - Software Versions Overview
This WordPress plugin provides an easy way to collect information of the software versions used on your website and send the information to our API.
Installation
Nativ
- Download the plugin zip archive.
- Go to your WordPress dashboard.
- Navigate to "Plugins" > "Add New."
- Click on "Upload Plugin" and select the downloaded zip archive.
- Activate the plugin after installation.
Composer
- Add this to the repositories in your composer.json
{ "type": "git", "url": "git@github.com:vonAffenfels/WP-Version-List-Plugin.git" } - Require it by adding it to your composer.json
"require": { "va/wp-plugin-version-list": "^1.1.0", } - Execute "composer update"
Usage
After activating the plugin, it will automatically add a Settings-Page where you add the Entry-ID, JWT Token and API URL. you get the Entry-ID and JWT Token by register the new Instanz here: https://wp-versions.ape/. \ After saving the Settings an WP-cronjob will be added, wich sends the collected Information once a day to the API.
You can add your own custom Information by calling a Filter. \ e.g.
add_filter('vaf_version_list_add_information', function ($currentCustomInformation) {
$currentCustomInformation['myInformation'] = 'ver0.0.0';
return $currentCustomInformation;
});
Features
- Collect Information
- Send the Information to the API
Changelog
-
1.0.0 (28.09.2023)
- Initial release of the plugin.
-
1.0.1 (10.10.2023)
- remove Blogname from collected Information
-
1.0.2 (11.10.2023)
- Limit registered Cronjobs to one
-
1.1.0 (30.11.2023)
- Remove Cron Logic and add custom REST Endpoint
-
1.1.3 (26.07.2024)
- Add PHP 7.4 Support
-
1.1.4 (13.08.2024)
- Add WP 5.0 Support
-
1.1.5 (17.10.2024)
- Set CURL Timeouts