"; $output .= l($title, "node/{$nid}", array('attributes' => array('class' => 'node-link'), 'query' => drupal_get_destination())); $output .= l('X', data_node_remove_path($table, $id, $nid), array('attributes' => array('class' => 'remove-link'), 'query' => drupal_get_destination())); $output .= ""; return $output; } /** * Theme for data_node_active_form. */ function theme_data_node_active_form($form) { drupal_add_css(drupal_get_path('module', 'data_node') . '/data_node.css'); drupal_add_js(drupal_get_path('module', 'data_node') . '/data_node.js'); $output = ''; $output .= drupal_render($form['nid']); $output .= "
". drupal_render($form['new']) ."
"; $output .= drupal_render($form); return $output; }