1
drupalブロックモジュールのjquery getまたはpostメソッド
drupal7.xブロックモジュールでjquery getまたはpostメソッドを使用して動的にデータをフェッチすることは可能ですか?私はdrupalの初心者です。 ここに私のevent_calendar.moduleファイルがあります function event_calendar_help($path, $arg) { switch ($path) { case "admin/help#event_calendar": return '<p>'. t("A block module that creates events and lists them in a event calendar") .'</p>'; break; } } /** * Implements hook_block_info(). */ function event_calendar_block_info() { $blocks['event_calendar'] = array( 'info' => t('Event calendar'), 'cache' => DRUPAL_CACHE_PER_ROLE, //Default …