You are here

function cck_time_elements in CCK Time 6

Implementation of hook_elements().

File

./cck_time.module, line 98

Code

function cck_time_elements() {
  $elements = array();
  $elements['cck_time'] = array(
    '#input' => TRUE,
    '#columns' => array(
      'value',
    ),
    '#delta' => 0,
    //new from text.module
    '#process' => array(
      'cck_time_process',
    ),
  );
  return $elements;
}