बाहरी वर्गों के साथ remove_action या remove_filter?


59

ऐसी स्थिति में जब एक प्लगइन ने एक वर्ग के भीतर अपने तरीकों को समझाया और फिर उन तरीकों में से एक के खिलाफ एक फिल्टर या कार्रवाई पंजीकृत की, यदि आप उस वर्ग की आवृत्ति तक नहीं पहुंचते हैं, तो आप कार्रवाई या फ़िल्टर को कैसे हटाते हैं?

उदाहरण के लिए, मान लें कि आपके पास एक प्लगइन है जो ऐसा करता है:

class MyClass {
    function __construct() {
       add_action( "plugins_loaded", array( $this, 'my_action' ) );
    }

    function my_action() {
       // do stuff...
    }
}

new MyClass();

यह देखते हुए कि मेरे पास अब उदाहरण तक पहुंचने का कोई तरीका नहीं है, मैं कक्षा को कैसे अनइंस्टाल करूं? यह: remove_action( "plugins_loaded", array( MyClass, 'my_action' ) );सही दृष्टिकोण प्रतीत नहीं होता है - कम से कम, मेरे मामले में काम नहीं करता है।


एन / पी। क्या नीचे आपके लिए एक काम है?
कैसर

जवाबों:


16

यहां सबसे अच्छी बात यह है कि एक स्थिर वर्ग का उपयोग करना है। निम्नलिखित कोड निर्देशात्मक होना चाहिए:

class MyClass {
    function __construct() {
        add_action( 'wp_footer', array( $this, 'my_action' ) );
    }
    function my_action() {
        print '<h1>' . __class__ . ' - ' . __function__ . '</h1>';
    }
}
new MyClass();


class MyStaticClass {
    public static function init() {
        add_action( 'wp_footer', array( __class__, 'my_action' ) );
    }
    public static function my_action() {
        print '<h1>' . __class__ . ' - ' . __function__ . '</h1>';
    }
}
MyStaticClass::init();

function my_wp_footer() {
    print '<h1>my_wp_footer()</h1>';
}
add_action( 'wp_footer', 'my_wp_footer' );

function mfields_test_remove_actions() {
    remove_action( 'wp_footer', 'my_wp_footer' );
    remove_action( 'wp_footer', array( 'MyClass', 'my_action' ), 10 );
    remove_action( 'wp_footer', array( 'MyStaticClass', 'my_action' ), 10 );
}
add_action( 'wp_head', 'mfields_test_remove_actions' );

यदि आप इस कोड को एक प्लगइन से चलाते हैं तो आपको ध्यान देना चाहिए कि StaticClass की विधि और साथ ही फ़ंक्शन wp_footer से हटा दिया जाएगा।


7
पॉइंट लिया गया, लेकिन सभी वर्गों को केवल स्थिर होने के लिए परिवर्तित नहीं किया जा सकता है।
गीर्ट

मैंने इस जवाब को स्वीकार कर लिया क्योंकि यह सीधे सवाल का जवाब देता है, हालांकि ओटो की प्रतिक्रिया सबसे अच्छा अभ्यास है। मैं यहां ध्यान देता हूं कि मुझे नहीं लगता कि आपको स्पष्ट रूप से स्थैतिक घोषित करने की आवश्यकता है। यह मेरा अनुभव रहा है (हालांकि मैं गलत हो सकता है) कि आप केवल फ़ंक्शन का इलाज कर सकते हैं जैसे कि यह स्थिर सरणी ('MyClass', 'member_function') थे और यह अक्सर 'स्थिर' कीवर्ड के बिना काम करता है।
टॉम ऑस्टर

@TomAuger नहीं, आप नहीं कर सकते, केवल अगर इसे एक स्थिर वर्ग के रूप में जोड़ा जाता है, तो आप remove_actionफ़ंक्शन का उपयोग कर सकते हैं , अन्यथा यह काम नहीं करेगा ... यही कारण है कि जब स्थिर वर्ग नहीं है, तो मुझे अपने स्वयं के फ़ंक्शन को संभालना होगा। यह उत्तर केवल तभी सबसे अच्छा होगा जब आपका प्रश्न आपके स्वयं के कोड के बारे में था, अन्यथा आप किसी अन्य के कोडबेस से किसी अन्य फ़िल्टर / क्रिया को निकालने का प्रयास कर रहे होंगे और इसे स्थैतिक में नहीं बदल सकते
sMyles

78

जब भी एक प्लगइन एक बनाता है new MyClass();, यह इसे विशिष्ट नाम वाले चर को असाइन करना चाहिए। इस तरह, कक्षा का उदाहरण सुलभ है।

तो अगर वह कर रहा था $myclass = new MyClass();, तो आप ऐसा कर सकते हैं:

global $myclass;
remove_action( 'wp_footer', array( $myclass, 'my_action' ) );

यह काम करता है क्योंकि प्लगइन्स वैश्विक नामस्थान में शामिल हैं, इसलिए प्लगइन के मुख्य निकाय में निहित परिवर्तनीय घोषणाएं वैश्विक चर हैं।

यदि प्लगइन नए वर्ग के पहचानकर्ता को कहीं नहीं बचाता है , तो तकनीकी रूप से, यह एक बग है। ऑब्जेक्ट ओरिएंटेड प्रोग्रामिंग के सामान्य सिद्धांतों में से एक यह है कि जिन वस्तुओं को कुछ चर द्वारा संदर्भित नहीं किया जा रहा है वे कहीं न कहीं सफाई या उन्मूलन के अधीन हैं।

अब, विशेष रूप से PHP ऐसा नहीं करेगा जैसे कि Java करेगा, क्योंकि PHP एक अर्ध-शापित OOP कार्यान्वयन है। उदाहरण चर केवल उन में अद्वितीय वस्तु नामों के साथ तार होते हैं, जैसे चीज़। वे केवल उसी तरह से काम करते हैं जिस तरह से चर फ़ंक्शन नाम इंटरैक्शन ->ऑपरेटर के साथ काम करता है । तो बस कर new class()वास्तव में पूरी तरह से काम कर सकते हैं, बस मूर्खतापूर्ण। :)

तो, नीचे पंक्ति, कभी नहीं new class();। क्या $var = new class();और है कि $ वर अन्य बिट्स यह संदर्भ के लिए के लिए किसी तरह से सुलभ बनाने के।

संपादित करें: वर्षों के बाद

एक चीज जिसे मैंने बहुत सारे प्लगइन्स में देखा है, वह है "सिंगलटन" पैटर्न के समान कुछ का उपयोग करना। वे वर्ग का एकल उदाहरण प्राप्त करने के लिए एक getInstance () विधि बनाते हैं। यह शायद मैंने देखा सबसे अच्छा समाधान है। उदाहरण प्लगइन:

class ExamplePlugin
{
    protected static $instance = NULL;

    public static function getInstance() {
        NULL === self::$instance and self::$instance = new self;
        return self::$instance;
    }
}

पहली बार getInstance () कहा जाता है, यह क्लास को इंस्टेंट करता है और अपने पॉइंटर को बचाता है। आप कार्यों में हुक करने के लिए इसका उपयोग कर सकते हैं।

इसके साथ एक समस्या यह है कि यदि आप ऐसी चीज का उपयोग करते हैं तो आप कंस्ट्रक्टर के अंदर getInstance () का उपयोग नहीं कर सकते हैं। ऐसा इसलिए है क्योंकि नया $ इंस्टाल करने से पहले कंस्ट्रक्टर को कॉल करता है, इसलिए कंस्ट्रक्टर से getInstance () कॉल करने से अनंत लूप हो जाता है और सब कुछ टूट जाता है।

एक समाधान यह है कि कंस्ट्रक्टर (या कम से कम, इसके भीतर getInstance () का उपयोग न करने के लिए) का उपयोग न करें, लेकिन स्पष्ट रूप से आपके कार्यों और इस तरह की स्थापना के लिए कक्षा में एक "init" फ़ंक्शन है। ऐशे ही:

public static function init() {
    add_action( 'wp_footer', array( ExamplePlugin::getInstance(), 'my_action' ) );
}

इस तरह से कुछ के साथ, फ़ाइल के अंत में, कक्षा को सभी परिभाषित करने के बाद और इस तरह, प्लगइन को इंस्टेंट करने के रूप में निम्नानुसार हो जाता है:

ExamplePlugin::init();

Init आपके कार्यों को जोड़ना शुरू कर देता है, और ऐसा करने में वह getInstance () को कॉल करता है, जो क्लास को इंस्टेंट करता है और सुनिश्चित करता है कि उनमें से केवल एक ही मौजूद है। यदि आपके पास एक init फ़ंक्शन नहीं है, तो आप इसके बजाय कक्षा को प्रारंभ में तुरंत करने के लिए ऐसा करेंगे:

ExamplePlugin::getInstance();

मूल प्रश्न को संबोधित करने के लिए, उस कार्रवाई हुक को बाहर (उर्फ, दूसरे प्लगइन में) से हटाकर फिर ऐसा किया जा सकता है:

remove_action( 'wp_footer', array( ExamplePlugin::getInstance(), 'my_action' ) );

रखो कि कुछ plugins_loadedकार्रवाई हुक करने के लिए झुका और यह मूल प्लगइन द्वारा कार्रवाई की जा रही पूर्ववत करेंगे।


3
+1 ट्रू डेट। यह स्पष्ट रूप से एक सर्वोत्तम अभ्यास है। हम सभी को इस तरह से अपना प्लगइन कोड लिखने का प्रयास करना चाहिए।
टॉम ऑस्टर

3
+1 इन निर्देशों ने वास्तव में मुझे एक सिंगलटन पैटर्न क्लास में एक फिल्टर को हटाने में मदद की।
डेविन वाकर

+1, लेकिन मुझे लगता है कि आपको आमतौर पर हुक करना चाहिए wp_loaded, न कि plugins_loaded, जिसे बहुत जल्दी कहा जा सकता है।
ईएमएल

4
नहीं, plugins_loadedसही जगह होगी। wp_loadedकार्रवाई के बाद क्या होता initकार्रवाई है, तो आपके प्लगइन पर कोई कार्रवाई करता है, तो init(और सबसे अधिक है), तो आप प्लगइन को प्रारंभ और उससे पहले इसे सेट अप करना चाहते हैं। plugins_loadedहुक कि निर्माण चरण के लिए सही जगह है।
ओट्टो

13

"अनाम" वर्ग के साथ फ़िल्टर / एक्शन को हटाने की अनुमति के लिए 2 छोटे PHP फ़ंक्शंस: https://github.com/herewithme/wp-filters-extras/


बहुत शांत कार्य। यहाँ पोस्ट करने के लिए धन्यवाद!
टॉम ऑगर

जैसा कि नीचे मेरी पोस्ट में दूसरों का उल्लेख किया गया है, ये वर्डप्रेस 4.7 में टूट जाएंगे (जब तक कि रेपो अपडेट नहीं हो जाता है, लेकिन 2 साल में नहीं होता है)
sMyles

1
बस यह देखते हुए कि wp-filter-extras repo वास्तव में v4.7 और WP_Hook वर्ग के लिए अपडेट किया गया है।
डेव रोमसे

13

जब आप क्लास ऑब्जेक्ट (वर्डप्रेस 1.2+ के साथ काम करता है) तक पहुँच नहीं है, तो फिल्टर को हटाने के लिए मैंने एक व्यापक रूप से प्रलेखित फ़ंक्शन बनाया है:

https://gist.github.com/tripflex/c6518efc1753cf2392559866b4bd1a53

/**
 * Remove Class Filter Without Access to Class Object
 *
 * In order to use the core WordPress remove_filter() on a filter added with the callback
 * to a class, you either have to have access to that class object, or it has to be a call
 * to a static method.  This method allows you to remove filters with a callback to a class
 * you don't have access to.
 *
 * Works with WordPress 1.2+ (4.7+ support added 9-19-2016)
 * Updated 2-27-2017 to use internal WordPress removal for 4.7+ (to prevent PHP warnings output)
 *
 * @param string $tag         Filter to remove
 * @param string $class_name  Class name for the filter's callback
 * @param string $method_name Method name for the filter's callback
 * @param int    $priority    Priority of the filter (default 10)
 *
 * @return bool Whether the function is removed.
 */
function remove_class_filter( $tag, $class_name = '', $method_name = '', $priority = 10 ) {
    global $wp_filter;

    // Check that filter actually exists first
    if ( ! isset( $wp_filter[ $tag ] ) ) return FALSE;

    /**
     * If filter config is an object, means we're using WordPress 4.7+ and the config is no longer
     * a simple array, rather it is an object that implements the ArrayAccess interface.
     *
     * To be backwards compatible, we set $callbacks equal to the correct array as a reference (so $wp_filter is updated)
     *
     * @see https://make.wordpress.org/core/2016/09/08/wp_hook-next-generation-actions-and-filters/
     */
    if ( is_object( $wp_filter[ $tag ] ) && isset( $wp_filter[ $tag ]->callbacks ) ) {
        // Create $fob object from filter tag, to use below
        $fob = $wp_filter[ $tag ];
        $callbacks = &$wp_filter[ $tag ]->callbacks;
    } else {
        $callbacks = &$wp_filter[ $tag ];
    }

    // Exit if there aren't any callbacks for specified priority
    if ( ! isset( $callbacks[ $priority ] ) || empty( $callbacks[ $priority ] ) ) return FALSE;

    // Loop through each filter for the specified priority, looking for our class & method
    foreach( (array) $callbacks[ $priority ] as $filter_id => $filter ) {

        // Filter should always be an array - array( $this, 'method' ), if not goto next
        if ( ! isset( $filter[ 'function' ] ) || ! is_array( $filter[ 'function' ] ) ) continue;

        // If first value in array is not an object, it can't be a class
        if ( ! is_object( $filter[ 'function' ][ 0 ] ) ) continue;

        // Method doesn't match the one we're looking for, goto next
        if ( $filter[ 'function' ][ 1 ] !== $method_name ) continue;

        // Method matched, now let's check the Class
        if ( get_class( $filter[ 'function' ][ 0 ] ) === $class_name ) {

            // WordPress 4.7+ use core remove_filter() since we found the class object
            if( isset( $fob ) ){
                // Handles removing filter, reseting callback priority keys mid-iteration, etc.
                $fob->remove_filter( $tag, $filter['function'], $priority );

            } else {
                // Use legacy removal process (pre 4.7)
                unset( $callbacks[ $priority ][ $filter_id ] );
                // and if it was the only filter in that priority, unset that priority
                if ( empty( $callbacks[ $priority ] ) ) {
                    unset( $callbacks[ $priority ] );
                }
                // and if the only filter for that tag, set the tag to an empty array
                if ( empty( $callbacks ) ) {
                    $callbacks = array();
                }
                // Remove this filter from merged_filters, which specifies if filters have been sorted
                unset( $GLOBALS['merged_filters'][ $tag ] );
            }

            return TRUE;
        }
    }

    return FALSE;
}

/**
 * Remove Class Action Without Access to Class Object
 *
 * In order to use the core WordPress remove_action() on an action added with the callback
 * to a class, you either have to have access to that class object, or it has to be a call
 * to a static method.  This method allows you to remove actions with a callback to a class
 * you don't have access to.
 *
 * Works with WordPress 1.2+ (4.7+ support added 9-19-2016)
 *
 * @param string $tag         Action to remove
 * @param string $class_name  Class name for the action's callback
 * @param string $method_name Method name for the action's callback
 * @param int    $priority    Priority of the action (default 10)
 *
 * @return bool               Whether the function is removed.
 */
function remove_class_action( $tag, $class_name = '', $method_name = '', $priority = 10 ) {
    remove_class_filter( $tag, $class_name, $method_name, $priority );
}

2
सवाल - क्या आपने 4.7 में इसका परीक्षण किया है? जिस तरह से नए ब्रांड में कॉलबैक दर्ज किए गए हैं, उसमें कुछ बदलाव हुए हैं। मैंने आपके कोड को गहराई से नहीं देखा है, लेकिन यह कुछ ऐसा है जिसे आप जांचना चाहते हैं: make.wordpress.org/core/2016/09/08/…
टॉम ऑगर

हां, काफी यकीन है कि यह 4.7 में टूट जाएगा
gmazzap

आह! नहीं, लेकिन मैंने आपको धन्यवाद नहीं दिया लेकिन मैं इस पर गौर करूंगा और इसे अपडेट करूंगा ताकि यह संगत हो (अगर जरूरत हो)
sMyles

1
@TomAuger सिर के लिए धन्यवाद! मैंने फ़ंक्शन को अपडेट किया है, वर्डप्रेस 4.7+ (बैकवर्ड संगतता के साथ अभी भी बनाए रखा गया) पर काम कर रहा है
शैलियाँ

1
बस इस (मध्य यात्रा को संभालने और php चेतावनी को रोकने के लिए) कोर आंतरिक हटाने विधि का उपयोग करने के लिए अद्यतन
sMyles

2

उपरोक्त समाधान पुराने की तरह दिखते हैं, मुझे अपना लिखना था ...

function remove_class_action ($action,$class,$method) {
    global $wp_filter ;
    if (isset($wp_filter[$action])) {
        $len = strlen($method) ;
        foreach ($wp_filter[$action] as $pri => $actions) {
            foreach ($actions as $name => $def) {
                if (substr($name,-$len) == $method) {
                    if (is_array($def['function'])) {
                        if (get_class($def['function'][0]) == $class) {
                            if (is_object($wp_filter[$action]) && isset($wp_filter[$action]->callbacks)) {
                                unset($wp_filter[$action]->callbacks[$pri][$name]) ;
                            } else {
                                unset($wp_filter[$action][$pri][$name]) ;
                            }
                        }
                    }
                }
            }
        }
    }
}

0

यह समारोह @Digerkam उत्तर पर आधारित है। अगर $def['function'][0]स्ट्रिंग है तो इसकी तुलना करें और आखिरकार यह मेरे लिए काम कर रहा है।

साथ ही उपयोग करके $wp_filter[$tag]->remove_filter()इसे और अधिक स्थिर बनाना चाहिए।

function remove_class_action($tag, $class = '', $method, $priority = null) : bool {
    global $wp_filter;
    if (isset($wp_filter[$tag])) {
        $len = strlen($method);

        foreach($wp_filter[$tag] as $_priority => $actions) {

            if ($actions) {
                foreach($actions as $function_key => $data) {

                    if ($data) {
                        if (substr($function_key, -$len) == $method) {

                            if ($class !== '') {
                                $_class = '';
                                if (is_string($data['function'][0])) {
                                    $_class = $data['function'][0];
                                }
                                elseif (is_object($data['function'][0])) {
                                    $_class = get_class($data['function'][0]);
                                }
                                else {
                                    return false;
                                }

                                if ($_class !== '' && $_class == $class) {
                                    if (is_numeric($priority)) {
                                        if ($_priority == $priority) {
                                            //if (isset( $wp_filter->callbacks[$_priority][$function_key])) {}
                                            return $wp_filter[$tag]->remove_filter($tag, $function_key, $_priority);
                                        }
                                    }
                                    else {
                                        return $wp_filter[$tag]->remove_filter($tag, $function_key, $_priority);
                                    }
                                }
                            }
                            else {
                                if (is_numeric($priority)) {
                                    if ($_priority == $priority) {
                                        return $wp_filter[$tag]->remove_filter($tag, $function_key, $_priority);
                                    }
                                }
                                else {
                                    return $wp_filter[$tag]->remove_filter($tag, $function_key, $_priority);
                                }
                            }

                        }
                    }
                }
            }
        }

    }

    return false;
}

उदाहरण का उपयोग:

सटीक मिलान

add_action('plugins_loaded', function() {
    remove_class_action('plugins_loaded', 'MyClass', 'my_action', 0);
});

कोई प्राथमिकता

add_action('plugins_loaded', function() {
    remove_class_action('plugins_loaded', 'MyClass', 'my_action');
});

किसी भी वर्ग और किसी भी प्राथमिकता

add_action('plugins_loaded', function() {
    remove_class_action('plugins_loaded', '', 'my_action');
});

0

यह एक सामान्य उत्तर नहीं है, लेकिन अवदा थीम और WooCommerce के लिए एक विशिष्ट है , जो मुझे लगता है कि अन्य लोग सहायक हो सकते हैं:

function remove_woo_commerce_hooks() {
    global $avada_woocommerce;
    remove_action( 'woocommerce_single_product_summary', array( $avada_woocommerce, 'add_product_border' ), 19 );
}
add_action( 'after_setup_theme', 'remove_woo_commerce_hooks' );
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.