I am creating node pro-grammatically on submission of a custom form. I have to implement two text field, which will show time FROM time and TO time and on submission I have to insert selected values to a CCK field. So I have two issue - How to show time in the select box, if I implement date in my form? (Though I can hardcode this). Another - In which format I should insert the selected time to the CCK field? (I tried by my below given code by hardcoded values of date but couldn't succeed, so if there is any properties which I have to change in CCK field then please suggest).
Code of form (to create Date field) -
$form['date'] = array(
'#type' => 'date',
'#title' => t('Date'),
'#prefix' => '<table><tr><td>',
'#suffix' => '</td>',
);
Code to create node -
global $user;
$node = new stdClass();
$node->type = 'project_task';
$node->uid = 1;
$node->title = $form_state['values']['task'];
$node->body = $form_state['values']['remarks'];
$node->status = 1;
$node->promote = 0;
$node->language = 'en';
$node->field_user_assign[]['uid'] = $user->uid;
$node->field_scheduled_start[]['date'] = time();
if ($node->validated) {
node_save($node);
}
else
{
t("Node not created");
}
What can be wrong in this ?