Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ?

share|improve this question
Use some jquery calendar plugin instead of treading from module PHP – Aravind Vel Nov 21 '12 at 19:15

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.