如何从javascript代码触发drupal规则

时间:2013-05-30 12:06:04

标签: javascript drupal drupal-7 drupal-rules

我不知道如何从JavaScript代码中触发drupal规则。

      lowerLayer[image.feature_nid].on("dragend", function() {
               var position = kineticImage.getPosition();
               var layerPosition = this.getPosition();
               var slotNid = kineticImage.slot_nid;
               positionX = position.x + layerPosition.x;
               positionY = position.y + layerPosition.y;
               //Here I want to call drupal rule
        });  

我评论了我需要触发drupal规则的行。我可以使用这些参数(slotNid,positionX,positionY)调用drupal规则,就像我可以调用某个函数(someFunction(slotNid,positionX,positionY)。

欢迎任何解决方案。

1 个答案:

答案 0 :(得分:2)

Clive所述,你可以通过ajax调用实现这一点 您需要在自定义模块&中的menu hook下设置页面回调。在那里你可以提到在页面请求上调用的函数。

Example:
// this code will go under menu hook
$items['ajax/rule1.1'] = array(
    'title' => 'Rule 1.1', 
    'page callback' => 'custom_rule_trigger', 
    'access arguments' => array('access content'), 
    'file' => 'custom_rules.inc',
  );

// then you can write php code which you want to execute under custom_rule_trigger function in custom_rules.inc file.
function custom_rule_trigger(){
// write your rules here.. 
}

在javascript中,您可以拨打www.example.com/ajax/rule1.1网址来触发您的规则。

希望这会有所帮助。