एक टेम्पलेट के अंदर एक प्लगइन वर्ग का उपयोग करना


9

मैं एक दोस्त को एक निमंत्रण भेजने के लिए एक प्लगइन लिख रहा हूं जो एक लिंक पर क्लिक करने पर एक फॉर्म खोलता है। मैंने @toscho द्वारा रिपोर्ट टूटे वीडियो प्लगइन में दिए गए कोड का पालन करके कक्षा में सभी कार्यों को समझाया। प्रासंगिक कोड नीचे है:

/*
Plugin Name: Send Invitation
Plugin URI: http://w3boutique.net
Description: Emails a the link of the current page to a friend
Author: Nandakumar Chandrasekhar
Version: 0.1
Author URI: http://w3boutique.net/about-nanda.html
License: GPL2
*/

// include() or require() any necessary files here

// Settings and/or Configuration Details go here
define('SEND_INVITATION_MIN_WORDPRESS_VERSION', '3.1.1');

define('SEND_INVITATION_PLUGIN_URL', plugins_url('', __FILE__));

add_action( 'init', array( 'SendInvitation', 'nc_sendinvitation_init' ) );

class SendInvitation {

    protected $nonce_name = 'nc_sendinvitation';
    protected $post_url = '';

    public static function nc_sendinvitation_init() {
        new self;
    }

    public function __construct() {
        add_action( 'init', array(&$this, 'nc_sendinvitation_head' ));
        add_action( 'init', array(&$this,  'nc_sendinvitation_check_wordpress_version' ));
       add_action( 'init', array(&$this, 'nc_sendinvitation_form_action' ));
       //$this->post_url = $this->nc_sendinvitation_get_post_url();
   }

   public function nc_sendinvitation_head() {
       wp_enqueue_script( 'jquery' );
       wp_enqueue_script( 'send_invitation_js',
        plugins_url( 'js/send-invitation.js', __FILE__ ),
        array( 'jquery' ) );

       wp_enqueue_style( 'send_invitation_css',
        plugins_url( 'css/send-invitation.css', __FILE__ ) );
   }

   public function nc_sendinvitation_check_wordpress_version() {
       global $wp_version;

       $exit_msg = 'Send Invitation requires version '
    . SEND_INVITATION_MIN_WORDPRESS_VERSION
    . 'or newer <a href="http://codex.wordpress.org/Upgrading_WordPress">Please
update!</a>';

       if ( version_compare( $wp_version, SEND_INVITATION_MIN_WORDPRESS_VERSION, '<') )
       {
            exit( $exit_msg );
       }
   }

   public function nc_sendinvitation_form_action() {

        $action = '';
        if ( $_SERVER['REQUEST_METHOD'] != 'POST' )
        {
             $action = $this->nc_sendinvitation_get_form();
        }
        else if ( $_SERVER['REQUEST_METHOD'] == 'POST' ) {
            $action = $this->nc_sendinvitation_handle_submit();
        }
        return $action;
   }

   public function nc_sendinvitation_get_form() {
       // Start the output buffer, prevents content being output directly into
       // script, instead it is stored in a buffer which can then be flushed
       // to allow the include file to be stored in a variable
       // See http://www.codingforums.com/showthread.php?t=124537
       ob_start();
       include('send-invitation-form.php');
       $send_invitation_link = ob_get_clean();

       return $send_invitation_link;
   }

   public function nc_sendinvitation_handle_submit() {
         if ( isset( $_POST['form_type'] ) && ( $_POST['form_type'] == 'nc_sendinvitation' ) ) {
            $to = 'navanitachora@gamil.com';
            $subject = 'Invitation to SwanLotus';
            $message = 'Navanitachora invites you to take a look at this link';
            wp_mail($to, $subject, $message);
            $result = 'Email was sent successfully';
    }
    else {
        $result = $this->nc_sendinvitation_get_form();
    }
    return $result;
}

public function nc_sendinvitation_get_post_url() {
    global $post;
    $blog_id = get_option('page_for_posts');
    $post_id = '';
    if (is_home($blog_id)) {
        $post_id = $blog_id;
    } else {
        $post_id = $post->ID;
    }

    return get_permalink($post_id);
}
}
/* End of File */
?>

मैं इस नुकसान में हूं कि इस टेम्प्लेट को अपने टेम्पलेट में कैसे उपयोग किया जाए ताकि मैं फॉर्म प्रदर्शित कर सकूं। मुझे पता है कि मुझे कक्षा को तुरंत शुरू करने की आवश्यकता है लेकिन मुझे यह सुनिश्चित नहीं है कि कोड कहां रखा जाए और ऑब्जेक्ट को कैसे एक्सेस किया जाए ताकि मैं इसे अपने टेम्पलेट में उपयोग कर सकूं। मुझे ओओपी का ज्ञान है लेकिन पहले इस संदर्भ में इसका उपयोग नहीं किया है और इसके लिए कदम से कदम निर्देश की आवश्यकता है।

बहुत धन्यवाद।

जवाबों:


9

वस्तु को जाने बिना अपनी कक्षा का उपयोग करने का सबसे अच्छा तरीका एक कार्रवाई है । प्रस्तुति के लिए थीम फ़ाइलें लोड होने से पहले आप कार्रवाई पंजीकृत करते हैं, वर्डप्रेस बाकी को संभाल लेगा।

नमूना कोड:

<?php # -*- coding: utf-8 -*-
/**
 * Plugin Name: Plugin Action Demo
 */
add_action( 'init', array ( 'Plugin_Action_Demo', 'init' ) );

class Plugin_Action_Demo
{
    /**
     * Creates a new instance.
     *
     * @wp-hook init
     * @see    __construct()
     * @return void
     */
    public static function init()
    {
        new self;
    }

    /**
     * Register the action. May do more magic things.
     */
    public function __construct()
    {
        add_action( 'plugin_action_demo', array ( $this, 'print_foo' ), 10, 1 );
    }

    /**
     * Prints 'foo' multiple $times.
     *
     * Usage:
     *    <code>do_action( 'plugin_action_demo', 50 );</code>
     *
     * @wp-hook plugin_action_demo
     * @param int $times
     * @return void
     */
    public function print_foo( $times = 1 )
    {
        print str_repeat( ' foo ', (int) $times );
    }
}

अब आप do_action( 'plugin_action_demo', 50 );अपने विषय या किसी अन्य प्लगइन में कहीं कॉल कर सकते हैं , और आपको कक्षा के आंतरिक कामकाज के बारे में परवाह नहीं करनी है।

यदि आप उस प्लगइन को निष्क्रिय कर देते हैं जो आप अभी भी सुरक्षित हैं: वर्डप्रेस सिर्फ अज्ञात कार्यों को अनदेखा करता है और do_action()इच्छाशक्ति कोई नुकसान नहीं पहुंचाएगी। साथ ही, अन्य प्लगइन्स कार्रवाई को हटाने या बदलने में सक्षम हैं, इसलिए आपने एक के साथ एक अच्छा मिनी एपीआई बनाया है add_action()

आप एक सिंगलटन भी बना सकते हैं:

<?php # -*- coding: utf-8 -*-
/**
 * Plugin Name: Plugin Singleton Demo
 */
class Plugin_Singleton_Demo
{
    protected static $instance = NULL;

    /**
     * Creates a new instance if there isn't one.
     *
     * @wp-hook init
     * @return object
     */
    public static function get_instance()
    {

        NULL === self::$instance and self::$instance = new self;
        return self::$instance;
    }

    /**
     * Not accessible from the outside.
     */
    protected function __construct() {}

    /**
     * Prints 'foo' multiple $times.
     *
     * @param int $times
     * @return void
     */
    public function print_foo( $times = 1 )
    {
        echo str_repeat( ' foo ', (int) $times );
    }
}

अब print_foo()प्रति सुलभ है:

Plugin_Singleton_Demo::get_instance()->print_foo();

मैं सिंगलटन पैटर्न की सिफारिश नहीं करता। इसमें कुछ गंभीर कमियां हैं


1
जिज्ञासा से बाहर, के उद्देश्य क्या है plugin_action_demoमें add_action()? यह कैसे do_action( 'print_foo', 50 );पता चलता है कि कार्रवाई plugin_action_demoया नाम अप्रासंगिक है?
जारेड

ठीक है, थोड़ा उलझन में था। :) इसे साफ करने के लिए धन्यवाद।
जारेड

रिकॉर्ड के लिए: declare()php 5.3+ :) की आवश्यकता है
kaiser

धन्यवाद कि काम करता है बस कुछ सत्यापन जोड़ने के लिए और मुझे किया जाना चाहिए। धन्यवाद @toscho आपने मुझे बहुत कुछ सिखाया है। :-)
नवनीतचौरा

@tosco को वर्डप्रेस प्लगइन्स के लिए एकल के बारे में लेखों की तलाश में आपका जवाब मिला। आपको पता आप करते रहे हैं आपके सिफारिश जवाब में एक सिंगलटन का उपयोग कर, आप बस इसे लागू नहीं कर रहे हैं? एक थीमर कॉल की कल्पना करें new Plugin_Action_Demo?? उपयोग do_action('plugin_action_demo')करने वाला कोई भी व्यक्ति दो (2) कॉलों को ट्रिगर करेगा Plugin_Action_Demo->print_foo(), न कि आप जो चाहते हैं। एकमात्र अधिक उत्तेजना पर ध्यान नहीं देता उचित उपयोग-मामले हैं। एक FYI के रूप में @ericmann और मैं दोनों अब WordPress plugin namepacing के लिए singletons की वकालत करने के लिए ब्लॉगिंग कर रहे हैं, वह eamann.com पर और मुझ पर hardcorewp.com।
मिकशिंकेल
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.