web-dev-qa-db-ja.com

コールバック中にクラス関数で外部オブジェクトを呼び出す

データベースをチェックしてテーブルを作成する機能を持つクラスがあります。そうするために私はWordPress $ wpdbオブジェクトを使う必要があります。

私は最初のプラグインのアクティベーションでのみ実行する機能が必要なので、私は機能を使用します。

register_activation_hook  ( __FILE__, array( 'MemorialCandles', 'dbInstall'   ) );

問題は、私はいつもこのエラーが出ることです:

致命的なエラー:77行目の/home/xxx/xxx/wordpress/wp-content/plugins/MemorialCandles/memorial-candles.class.phpでオブジェクトコンテキストにないときに$ thisを使用する

クラスコード:

<?php

// Global Variables:
global $wpdb;
register_activation_hook  ( __FILE__, array( 'MemorialCandles', 'dbInstall'   ) );

/**
 * Class: MemorialCandles
 * 
 * Provides skeleton to the plugin and handles queries and action.
 * 
 * @author Dor Zuberi <[email protected]>
 * @copyright 2011 Dor Zuberi
 * @license http://www.php.net/license/3_01.txt
 */
class MemorialCandles
{
    // Variables    
    /**
     * @var string stores plugin direction - RTL or LTR.
     */
    private $pluginDirection;

    /**
     * @var string stores the plugin database table name.
     */
    private $tableName;

    // Constructor
    /**
     * Initiates the plugin, stores and configure the basic setup procedures.
     * 
     * @return void
     */
    function __construct()
    {
        global $wpdb;

        $this->tableName = $wpdb->prefix . 'memorialcandles';
    }

    // Getters

    // Setters

    // Methods
    /**
     * Handles the database table creation.
     * 
     * @return void
     */
    function dbInstall()
    {
        global $wpdb;

        if( $wpdb->get_var( "SHOW TABLES LIKE `{$this->tableName}`" ) != $this->tableName )
        {
            $sql = "CREATE TABLE `{$this->tableName}` (
                        id        int(8) NOT NULL AUTO_INCREMENT,
                        fullName  text   NOT NULL,
                        message   text   NOT NULL,
                        postDate  text   NOT NULL,
                        galleryID int(8) NOT NULL,

                        UNIQUE KEY id(id)
                    );";

            require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
            dbDelta( $sql );
        }
    }

    /**
     * Handles the database table drop procedure.
     * 
     * @return void
     */
    function dbUninstall()
    {
        global $wpdb;

        $sql = "DROP TABLE IF EXISTS `{$this->tableName}`;";

        $wpdb->query( $sql );
    }    
}

?>

前もって感謝します! :D

1
Dor Zuberi

試してください:

register_activation_hook  ( __FILE__, array( new MemorialCandles(), 'dbInstall'   ) );

あるいは、dbInstallを「静的」と定義し、それを使用してコンストラクタではなくテーブル名を設定します。これが最善の方法だと思います。

1
MZAweb

わかりました新しい答え、今回はテスト済みのワーキングソリューションです。まずあなたのクラスのインスタンスを作成し、それからあなたのregister_activation_hookを呼び出してください。

$MemorialCandles = NEW MemorialCandles();

register_activation_hook  ( __FILE__, array( 'MemorialCandles', 'dbInstall'   ) );
1
Bainternet