1

特定のコンテンツ タイプのノード作成およびノー​​ド編集でのみ JavaScript 関数を実行したいと考えています。それはたった 1 つの小さな関数呼び出しです。

tearDrupal 7 コンテンツ タイプ " " と JavaScript 関数 " doitnow();"を呼び出しましょう

これを行う方法はありますか?

どうもありがとうございました。

ニルス

4

1 に答える 1

3

独自のモジュールを作成し、hook_node_insert()hook_node_update()、およびhook_node_view()を実装して、適切な手順を実行する必要があります。また、 Drupal の動作を備えた JavaScript コードをいくつか作成する必要があり、準備は完了です。ノードの作成/更新後に一時セッション変数を使用する必要があります。これにより、hook_node_view でこの変数の存在を確認し、新しい「ティア」コンテンツが追加されたことを「伝える」JS 設定を追加できるためです。

モジュール全体をここからダウンロードできます。

このモジュールをsites/all/modules/testModuleディレクトリに配置する必要があります。

OK、モジュールのコードは次のとおりです。

testModule.info:

name = Test Customization Module
description = Customizing stuffs on the site...
core = 7.x
package = My modules

scripts[] = js/testModule.behaviors.js

testModule.module:

/**
 * Implements hook_node_insert()
 * 
 * @see http://api.drupal.org/api/drupal/modules!node!node.api.php/function/hook_node_insert/7
 * @param object $node 
 */
function testModule_node_insert($node) {    
    switch ($node->type) {
        case 'tear':
            $_SESSION['tear_just_inserted'] = microtime();
            break;
    }
}

/**
 * Implements hook_node_update()
 * 
 * @see http://api.drupal.org/api/drupal/modules!node!node.api.php/function/hook_node_update/7
 * @param object $node 
 */
function testModule_node_update($node) {
    switch ($node->type) {
        case 'tear':
            $_SESSION['tear_just_inserted'] = microtime();
            break;
    }
}

/**
 * Implements hook_node_view().
 */
function testModule_node_view($node, $view_mode, $langcode) {
    switch ($node->type) {
        case 'tear':
            // we call doitnow() if it's needed (if "tear" content was added before)
            if (isset($_SESSION['tear_just_inserted'])) {
                drupal_add_js(array('testModule' => array('tear_just_added' => TRUE)), 'setting');
                unset($_SESSION['tear_just_inserted']);
            }

            break;
    }
}

/**
 * Implements hook_overlay_child_initialize()
 * @see http://api.drupal.org/api/drupal/modules!overlay!overlay.api.php/function/hook_overlay_child_initialize/7
 */
function testModule_overlay_child_initialize() {
    // Add our custom JavaScript: we don't want the node/add/tear to appear on the overlay, because this way the JS setting doesn't get added properly
    drupal_add_js(drupal_get_path('module', 'testModule') . '/js/testModule.overlay.behaviors.js');
}

js/testModule.behaviors.js:

(function ($) {   
    Drupal.behaviors.testModule = {
        doitnow: function(){
            alert("A new \"tear\" content has just been added!");
        },

        attach: function (context, settings) {
            try{
                if(settings.testModule.tear_just_added){
                    this.doitnow();
                }
            } catch(ex){}
        }
    };
})(jQuery);

js/testModule.overlay.behaviors.js:

(function ($) {
    // Disable overlay for creating the "tear" node.
    Drupal.behaviors.testModule = {
        attach: function (context, settings) {
            var $tear_link = $('a[href*="node/add/tear"]'),
            tear_link_href = $tear_link.attr('href');
            if( $tear_link.length > 0 ) {
                // we want to avoid opening the content adding for "tear" content type in the overlay
                // so we open it in the current window
                $tear_link.unbind();
                $tear_link.click(function(e){
                    window.open(tear_link_href,'_self',false);
                    e.stopPropagation();
                })
            }    
        };
    }
})(jQuery);

不明な点がある場合は質問してください。

于 2012-06-01T22:59:12.817 に答える