I have created a table in my Drupal 6 setup by theming here is my page http://www.image-share.com/ijpg-1153-142.html and here is the code for that
function theme_freeway_dashboard($form) {
$rows = array();
foreach (element_children($form) as $key) {
$row = array();
if (isset($form[$key]['projectID'])) {
$status = drupal_render($form['featured'][$key]);
$row[] = array('data' => $status, 'class' => 'checkbox');
$row[] = '' . drupal_render($form[$key]['projectID']) . '';
$row[] = array('data' => drupal_render($form[$key]['projectDesc']));
$rows[] = $row;
}
}
$header = array();
$header[] = array('data' => t('Featured'), 'class' => 'checkbox');
$header[] = t('Project ID');
$header[] = t('Project Description');
$output = theme('table', $header, $rows, array('size' => 10, 'class' => 'table_class'));
$output .= drupal_render($form);
return $output;
}
..i want to know if i can have hyperlinks inside the table For rg: if you see the image..i need the Project ID row to be hyperlinks I followed this link 'http://www.akchauhan.com/create-drupal-form-using-theme_table-like-module-list-form/' for the table part , but they use checkboxes there...how can i use hyperlinks to navigate to the next page?
The below shown code is the one that obtains the components making uo the table..namely the project ID and Project Description in arrays. Basically these are called from web service calls.
function freeway_dashboard(){
drupal_add_js(drupal_get_path('module', 'freeway') .'/js/dashboardscript.js');
$statusValue = 'Draft';
$listOfProjectsIds = array();
$listOfProjectsDesc = array();
$node = node_load(arg(1));
$form = array();
$url_arg = trim($_GET['status']);
//echo($url_arg);
$arrayStatus = array(1 =>'Draft',2=>'NotSpecified',3=>'Quote',4=>'Forecasted',5=>'InEvaluation',6=>'Cancelled',7=>'Booked',8=>'InProduction',9=>'Completed',10=>'Closed');
$LoginClient = new SoapClient("https://freeway.demo.lionbridge.com/vojo/FreewayAuth.asmx?wsdl", array("trace"=>1));
$ServicesLink = new SoapClient("https://freeway.demo.lionbridge.com/vojo/Service.asmx?wsdl", array("trace"=>1));
if (!$url_arg){
try{
$arrResponse = $LoginClient->Logon(array ('Username'=>'user','Password'=>'pwrd'));
$ticket = ($arrResponse->LogonResult);
$getSrcLang = $ServicesLink->GetSourceLanguages(array('Ticket'=>$ticket));
$getDraftProjectIds = $ServicesLink->GetProjectSummariesList(array('Ticket'=>$ticket,'NumberOfProjects'=>100,'SortOrder'=>MostRecent,'ProjectStatusCode'=>'Draft'));
foreach ($getDraftProjectIds->GetProjectSummariesListResult->ProjectSummaries->ProjectSummary as $i=>$getDraftProjectIds->GetProjectSummariesListResult->ProjectSummaries->ProjectSummary)
{
$listOfProjectsIds[$i] = $getDraftProjectIds->GetProjectSummariesListResult->ProjectSummaries->ProjectSummary->ID;
$listOfProjectsDesc[$i] = $getDraftProjectIds->GetProjectSummariesListResult->ProjectSummaries->ProjectSummary->Description;
}
}
catch (SoapFault $exception){
return $exception;
}
}
else {
try{
$arrResponse = $LoginClient->Logon(array ('Username'=>'dmitry.testuser','Password'=>'I8it4lunch'));
$ticket = ($arrResponse->LogonResult);
$getSrcLang = $ServicesLink->GetSourceLanguages(array('Ticket'=>$ticket));
$getDraftProjectIds = $ServicesLink->GetProjectSummariesList(array('Ticket'=>$ticket,'NumberOfProjects'=>100,'SortOrder'=>MostRecent,'ProjectStatusCode'=>$url_arg));
foreach ($getDraftProjectIds->GetProjectSummariesListResult->ProjectSummaries->ProjectSummary as $i=>$getDraftProjectIds->GetProjectSummariesListResult->ProjectSummaries->ProjectSummary)
{
$listOfProjectsIds[$i] = $getDraftProjectIds->GetProjectSummariesListResult->ProjectSummaries->ProjectSummary->ID;
$listOfProjectsDesc[$i] = $getDraftProjectIds->GetProjectSummariesListResult->ProjectSummaries->ProjectSummary->Description;
}
}
catch (SoapFault $exception){
return $exception;
}
}
$form['status_list']=array(
'#type'=>'select',
'#title' => t('Freeway Project Statuses'),
'#options' => $arrayStatus,
'#default_value' => t('Select Status'),
'#attributes'=> array('onselect' => "populateStatusTables();"),
'#weight'=>0,
);
for($m=0;$m <count($listOfProjectsIds);$m+=1){
$options[$listOfProjectsIds[$m]] = '';
$form[$listOfProjectsIds[$m]]['projectID'] = array('#value' => $listOfProjectsIds[$m]);
$form[$listOfProjectsIds[$m]]['projectDesc'] = array('#value' => $listOfProjectsDesc[$m]);
}
$form['featured'] = array(
'#type' => 'checkboxes',
'#options' => $options,
'#multiple' => false,
);
$form['getProjectDetails'] = array(
'#type' => 'submit',
'#value' => t('Get Details'),
'#weight'=>5,
);
$form['cancel'] = array(
'#type' => 'markup',
'#value' => l(t('Cancel'), 'dashboard'),
'#weight'=>6,
);
return $form;
}
Thanks, Angela
$row[] = '' . drupal_render($form[$key]['projectID']) . '';you want it to have a link to the project? – Max Dec 23 '11 at 13:56drupal_renderto thet()function which expects a string. If you know the project id how can you link to it? I mean what is the path to project id = 123, is it something like this: www.example.com/projects/123 or it's something else? – Max Dec 23 '11 at 15:41$row[] = ''.'' l(t(drupal_render($form[$key]['projectID'])),$url,array ('attributes' => array('target' => '_blank')));''.'';triggered errors it's because of the syntax error in there: It lacks a.operator at the beginning in'' l(t.... And what's with all the concatenation to empty strings anyway, i.e'' .t() . ''?. You don't need that. There's also an extra''.'';at the end of that line of code which shouldn't trigger an error but is totally unnecessary. – Alexander Dec 23 '11 at 16:01