我需要在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?
答案 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!
?>