템플릿 내에서 플러그인 클래스 사용


9

링크를 클릭하면 양식을 여는 친구에게 초대장을 보내는 플러그인을 작성 중입니다. @toscho의 Report Broken Video 플러그인에 제공된 코드에 따라 클래스의 모든 함수를 캡슐화했습니다. 관련 코드는 다음과 같습니다.

/*
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 */
?>

양식에 표시 할 수 있도록 템플릿에서이 클래스를 사용하는 방법에 대한 손실이 있습니다. 클래스를 인스턴스화해야한다는 것을 알고 있지만 템플릿에 사용할 수 있도록 코드를 어디에 넣을 것인지와 객체에 액세스하는 방법을 모르겠습니다. 나는 OOP에 대한 지식을 가지고 있지만 이전에는이 ​​맥락에서 사용하지 않았으며 단계별 지시가 조금 필요합니다.

많은 감사합니다.

답변:


9

객체를 몰라도 클래스를 사용하는 가장 좋은 방법은 행동 입니다. 프리젠 테이션을위한 테마 파일이로드되기 전에 조치를 등록하면 WordPress가 나머지를 처리합니다.

샘플 코드 :

<?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 ); 테마 나 다른 플러그인에서 더 이상 수업의 내부 작업에 신경 쓸 필요가 없습니다.

플러그인을 비활성화해도 여전히 안전합니다. WordPress는 알 수없는 동작을 무시하고 do_action()아무런 해를 끼치 지 않습니다. 또한 다른 플러그인은 액션을 제거하거나 바꿀 수 있으므로 하나의 멋진 미니 API를 빌드했습니다 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이 그 이름과 무관하다는 것을 어떻게 알 수 있습니까?
Jared

좋아, 약간 혼란 스러웠다. :) 그것을 정리해 주셔서 감사합니다.
Jared

기록 : declare()PHP 5.3 이상이 필요합니다 :)
kaiser

고맙다는 작품은 유효성 검사를 추가해야하며 완료해야합니다. @toscho에게 감사드립니다. :-)
navanitachora

@tosco WordPress 플러그인 용 싱글 톤에 대한 기사를 찾고있는 답변을 찾았습니다. 당신은 당신이 생각합니까 되어 당신의 권장 대답 싱글 톤을 사용하여, 당신은 단지 그것을 적용되지 않는다? 테마가 전화한다고 상상 해보세요 new Plugin_Action_Demo?? 를 사용하는 사람 do_action('plugin_action_demo')Plugin_Action_Demo->print_foo()원하는 것이 아닌에 대한 호출을 두 번 트리거 합니다. 싱글 톤에 대한 열의는 적절한 사용 사례가 있다는 것을 무시합니다. 참고로 @ericmann과 저는 WordPress 플러그인 네임 스페이스의 싱글 톤을 옹호하기 위해 블로깅을하고 있습니다.
MikeSchinkel
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.