Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function theme_freeway_user_mapping_non_global($form) {
- GLOBAL $user;
- foreach (element_children($form) as $key) {
- $row = array();
- //$row[] = array('data' => drupal_render($form[$key]['data']));
- //print_r (array('data' => ($form[$key]['data'])));
- print_r($form[$key]['data']);
- }
- $header = array();
- $header[] = t('Drupal UserName');
- $header[] = t('Freeway UserName');
- $header[] = t('Freeway Password');
- $output = theme('table', $header, $rows);
- $output .= drupal_render($form);
- return $output;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement