ওয়ার্ডপ্রেস ৩.৯ থেকে আপনি upgrader_process_complete
হুক ব্যবহার করতে পারেন ।
রেফারেন্স 1 , 2 দেখুন
এখানে একটি উদাহরণ কোড:
<?php
/**
* Plugin Name: Test plugin 1
* Plugin URI: http://rundiz.com
* Description: A very simple plugin for testing. This plugin do nothing.
* Version: 0.1.8
* Author: Vee Winch
* Author URI: http://rundiz.com
* License: MIT
* License URI: https://opensource.org/licenses/MIT
* Text Domain: test-plugin1
* Domain Path:
*/
$wppstp1_version = '0.1.8';
add_action('upgrader_process_complete', 'wppstp1_upgrade', 10, 2);// will working only this plugin activated.
function wppstp1_upgrade(\WP_Upgrader $upgrader_object, $hook_extra)
{
global $wppstp1_version;
if (is_array($hook_extra) && array_key_exists('action', $hook_extra) && array_key_exists('type', $hook_extra) && array_key_exists('plugins', $hook_extra)) {
// check first that array contain required keys to prevent undefined index error.
if ($hook_extra['action'] == 'update' && $hook_extra['type'] == 'plugin' && is_array($hook_extra['plugins']) && !empty($hook_extra['plugins'])) {
// if this action is update plugin.
$this_plugin = plugin_basename(__FILE__);
foreach ($hook_extra['plugins'] as $each_plugin) {
if ($each_plugin == $this_plugin) {
// if this plugin is in the updated plugins.
// don't process anything from new version of code here, because it will work on old version of the plugin.
file_put_contents(WP_CONTENT_DIR . '/test.txt', 'v'.$wppstp1_version."\r\n", FILE_APPEND); // you will always get the previous version even you update to the new version.
// set transient to let it run later.
set_transient('wppstp1_updated', 1);
}
}// endforeach;
unset($each_plugin);
}// endif update plugin and plugins not empty.
}// endif; $hook_extra
}// wppstp1_upgrade
add_action('plugins_loaded', 'wppstp1_runUpdatedPlugin');
function wppstp1_runUpdatedPlugin()
{
global $wppstp1_version;
if (get_transient('wppstp1_updated') && current_user_can('manage_options')) {
// if plugin updated and current user is admin.
file_put_contents(WP_CONTENT_DIR . '/test-update-by-transient.txt', 'v'.$wppstp1_version."\r\n", FILE_APPEND);// you will always get the updated version here.
// update code here.
// delete transient.
delete_transient('wppstp1_updated');
}
}// wppstp1_runUpdatedPlugin
একবার প্লাগইন আপডেট হয়ে গেলে, এটি set_transient()
ফাংশনটি ব্যবহার করে কাজটিকে ডিবিতে সেট করবে set upgrader_process_complete
হুক কল করার সময় আপডেট কোড যুক্ত করার পরামর্শ দেওয়া হয় না ।
এরপরে, আপনি যদি অন্য প্রশাসকের পৃষ্ঠাতে ব্রাউজ করেন তবে plugins_loaded
হুকটি কাজ করবে এবং আপডেট কোডটি সেখানে কাজ করবে।
দয়া করে নোট করুন যে আপডেট হুককে কাজ করতে এই প্লাগইনটি সক্রিয় করতে হবে।
এটি অ্যাক্টিভেট প্লাগইন নিয়ে কাজ করছে না, আপনি যদি প্লাগইন অ্যাক্টিভেটে কাজ করে এমন কোডটি চান তবে আপনাকে এটিকে register_activation_hook()
ফাংশনে কোড করতে হবে ।