プラグイン内の機能を変更したいのですが。これはプラグインのメインファイルで次のように宣言されています。
class WCPGSK_Main {
...
public function wcpgsk_email_after_order_table($order) {
...
}
}
このようにそこから呼ばれる追加:
add_action( 'woocommerce_email_after_order_table', array($this, 'wcpgsk_email_after_order_table') );
Functions.phpのクラスにアクセスできれば置き換えることが可能だろうと思います。それから私はこのような何かを書くことができるでしょう:
$wcpgsk = new WCPGSK_Main;
remove_action( 'woocommerce_email_after_order_table', array($wcpgsk, 'wcpgsk_email_after_order_table') );
function customized_wcpgsk_email_after_order_table($order) {
...
}
add_action( 'woocommerce_email_after_order_table', array($wcpgsk, 'customized_wcpgsk_email_after_order_table') );
Functions.phpファイルでクラスにアクセスするための私の考えは、そのクラスがfunctions.phpで宣言されているファイルを含めることでした。
require_once('/wp-content/plugins/woocommerce-poor-guys-swiss-knife/woocommerce-poor-guys-swiss-knife.php');
$wcpgsk = new WCPGSK_Main;
...
しかし、WordPressでプラグインが初期化されるときにプラグインのファイルが含まれるため、これは機能しません、と私は思います。
プラグインのファイルに触れずに関数を書き換える方法はありますか?
これはうまくいくはずです。
add_action( 'woocommerce_init', 'remove_wcpgsk_email_order_table' );
function remove_wcpgsk_email_order_table() {
global $wcpgsk;
remove_action( 'woocommerce_email_after_order_table', array( $wcpgsk, 'wcpgsk_email_after_order_table' ) );
}
あなたのプラグインがこのように登録されているならば:
class Test_Class_Parent {
function __construct() {
add_action('wp_head',array($this,'test_method'));
}
function test_method() {
echo 'Echoed from the parent';
}
}
$p = new Test_Class_Parent();
その後、グローバルにアクセスしてフィルタを削除できるはずです。
class Test_Class_Child extends Test_Class_Parent {
function __construct() {
$this->unregister_parent_hook();
add_action('wp_head',array($this,'test_method'));
}
function unregister_parent_hook() {
global $p;
remove_action('wp_head',array($p,'test_method'));
}
function test_method() {
echo 'Echoed from the child';
}
}
$c = new Test_Class_Child();
それ以外の場合は、登録キーの$wp_filter
global
をクロールする必要があります。
class Test_Class_Child extends Test_Class_Parent {
function __construct() {
$this->unregister_parent_hook();
add_action('wp_head',array($this,'test_method'));
}
function unregister_parent_hook() {
global $wp_filter;
if (!empty($wp_filter['wp_head'])) {
foreach($wp_filter['wp_head'] as $cb) {
foreach ($cb as $k => $v) {
if (
isset($v['function'])
&& is_a($v['function'][0],'Test_Class_Parent')
&& isset($v['function'][1])
&& 'test_method' == $v['function'][1]
) {
remove_action('wp_head',$k);
}
}
}
}
}
function test_method() {
echo 'Echoed from the child';
}
}
$c = new Test_Class_Child();
これはリソースを大量に消費するため、他に選択肢がない限り、実際には実行しないでください。
このプラグインはinit関数をwcpgsk_init()
プラグイン可能にするので、それをオーバーライドするもう1つの方法は、使用する必要があるプラグインで最初に定義することです(テーマの "functions.php"では遅すぎるので)。それで、あなたは "wp-content/mu-plugins/functions.php"にあなたの上書きを置くことができます:
function wcpgsk_init() {
global $wcpgsk, $wcpgsk_about, $wcpgsk_options, $wcpgsk_session, $wcpgsk_woocommerce_active;
//only continue loading
if ( $wcpgsk_woocommerce_active && version_compare( WOOCOMMERCE_VERSION, "2.0" ) >= 0 ) {
$FILE = WP_PLUGIN_DIR . '/woocommerce-poor-guys-swiss-knife/woocommerce-poor-guys-swiss-knife.php'; // Fake __FILE__
$dirname = dirname( $FILE ) . '/';
$wcpgsk_options = get_option('wcpgsk_settings', true);
require_once( $dirname . 'classes/woocommerce-poor-guys-swiss-knife.php' );
require_once( $dirname . 'classes/woocommerce-poor-guys-swiss-knife-about.php' );
require_once( $dirname . 'wcpgsk-af.php' );
if ( !is_admin() ) :
add_action( 'plugins_loaded', 'wcpgsk_load_wcsession_helper' );
endif;
// Your override.
class My_WCPGSK_Main extends WCPGSK_Main {
public function wcpgsk_email_after_order_table($order) {
echo "O la la";
}
}
define( 'WCRGSK_DOMAIN', WCPGSK_DOMAIN ); // Fix typo! (WooCommerce Rich Guys Swiss Knife?)
//load into our global
$wcpgsk = new My_WCPGSK_Main( $FILE );
$wcpgsk->version = '2.2.4';
$wcpgsk->wcpgsk_hook_woocommerce_filters();
} elseif ( version_compare( WOOCOMMERCE_VERSION, "2.0" ) < 0 ) {
add_action( 'admin_notices', 'wcpgsk_woocommerce_version_message', 0 ) ;
return;
} else {
return;
}
}
しかしそれをオーバーライドするためのさらに良い方法はrunkit
( https://github.com/padraic/runkit )をインストールして、それをあなたのテーマの "functions.php"の中で直接置き換えることです:
add_action( 'init', function () {
$code = <<<'EOD'
echo "O la la";
EOD;
runkit_method_redefine(
'WCPGSK_Main',
'wcpgsk_email_after_order_table',
'$order',
$code,
RUNKIT_ACC_PUBLIC
);
} );
(それは冗談だけどね。)