0

drupal 7 で GCal API を使用していますが、イベントを作成しようとして立ち往生しています。未定義関数の呼び出しエラーが発生しました。しかし、私の議論には何か問題があるのではないかと思います。コードは次のとおりです。

    $event =array( 
              'Summary'=> 'random',
              'Start'=> '2013-12-12 12:00:00',
              'End'=> '2013-12-12 13:00:00',
              'TimeZone'=> 'America/Los_Angeles',
              );
    $calendar_id='CALENDAR_ID';   //this was found off of the calendar settings page
    $account_name=gauth_account_load('test_account');
    $success=gcal_create_event($event, $calendar_id, $account_name);

カレンダーが公開されていることは確認済みです。ドキュメントはこちら: http://drupal.org/project/gcal

4

1 に答える 1

0

drupal 7 では関数名が少し変更され、drupal 6 では gcal_create_event でしたが、drupal 7 では gcal_event_create に変更しました。

コードの最後の行を次のように変更するだけです

$success=gcal_create_event($event, $calendar_id, $account_name);

$success=gcal_event_create($event, $calendar_id, $account_name);

問題を解決する必要があります。

于 2013-04-27T05:16:23.827 に答える