如何建立drupal评论的链接?

时间:2015-05-06 03:11:03

标签: php html drupal hyperlink drupal-6

我需要在drupal中自定义链接到评论表单,如下所示:

var firstModuleHandle = (function($){

    var JsBarcode = function(){
        //Some Code Here
        console.log("can access me?");
    }
    return {JsBarcode: JsBarcode};

})(window.jQuery);

(function ($) {  
    firstModuleHandle.JsBarcode();
    //calls a JsBarcode not within a scope
})(jQuery);

如何获取节点NID?

1 个答案:

答案 0 :(得分:1)

您可以访问ArrayList.add()对象。 $node将返回节点的$node->nid

或者

NID

编辑(功能更一般):

<?php
 if (arg(0) == 'node' && is_numeric(arg(1))) $nodeid = arg(1);
 echo $nodeid; // show me your nid!
?>
  • 参考:
  

https://www.drupal.org/node/160921