web-dev-qa-db-ja.com

前回のcron実行以降の(日付)タイムスタンプを取得するにはどうすればよいですか?

モジュールを構築していますが、行き詰まっています。hook_cronジョブを実行するときに、以前のcronのタイムスタンプが必要です。これにより、どのノードが新しいかを確認し、それらにメールを送信できます。

それで、前回のcron実行からの日付/時刻スタンプが必要ですが、どうすれば取得できますか?

11
FLY

最後のcron実行のUNIXタイムスタンプは、次のコマンドで取得できます。

variable_get('cron_last');

必要な場合は、PHPの date 関数を使用してUNIXタイムスタンプを簡単に操作できます。

19
Bart

hook_requirement()関数が役立ちます。

これをチェックしてください: http://api.drupal.org/api/drupal/modules%21system%21system.api.php/function/hook_requirements/7

モジュールファイルにhook_requirement()関数を記述します。

function hook_requirements($phase) {
if ($phase == 'runtime') {
    $cron_last = variable_get('cron_last');

    if (is_numeric($cron_last)) {
      $requirements['cron']['value'] = $t('Last run !time ago', array('!time' => format_interval(REQUEST_TIME - $cron_last)));
    }
    else {
      $requirements['cron'] = array(
        'description' => $t('Cron has not run. It appears cron jobs have not been setup on your system. Check the help pages for <a href="@url">configuring cron jobs</a>.', array('@url' => 'http://drupal.org/cron')), 
        'severity' => REQUIREMENT_ERROR, 
        'value' => $t('Never run'),
      );
    }

    $requirements['cron']['description'] .= ' ' . $t('You can <a href="@cron">run cron manually</a>.', array('@cron' => url('admin/reports/status/run-cron')));

    $requirements['cron']['title'] = $t('Cron maintenance tasks');
  }
}
3
mohit_rocks