programowo utwórz niestandardowe zadanie CRON Drupal 7
function YOURMODULE_cron(){
if( date('G') == 19) ){ // At 19'o clock
// Code here
}
}
Successful Swiftlet
function YOURMODULE_cron(){
if( date('G') == 19) ){ // At 19'o clock
// Code here
}
}