Add the select destination for call flows. Also add descriptions for each field.

This commit is contained in:
Mark Crane
2012-09-14 21:57:22 +00:00
parent 79b6aba199
commit 4b9690ceae
2 changed files with 82 additions and 69 deletions
+5 -11
View File
@@ -80,11 +80,8 @@ require_once "includes/paging.php";
echo th_order_by('call_flow_status', 'Status', $order_by, $order);
echo th_order_by('call_flow_extension', 'Extension', $order_by, $order);
echo th_order_by('call_flow_feature_code', 'Feature Code', $order_by, $order);
echo th_order_by('call_flow_app', 'Application', $order_by, $order);
//echo th_order_by('call_flow_pin_number', 'PIN Number', $order_by, $order);
echo th_order_by('call_flow_data', 'Application Data', $order_by, $order);
echo th_order_by('call_flow_anti_app', 'Alternate Application', $order_by, $order);
echo th_order_by('call_flow_anti_data', 'Application Data', $order_by, $order);
echo "<th>Destination</th>\n";
echo "<th>Alternate Destination</th>\n";
echo th_order_by('call_flow_description', 'Description', $order_by, $order);
echo "<td align='right' width='42'>\n";
if (permission_exists('call_flow_add')) {
@@ -110,12 +107,9 @@ require_once "includes/paging.php";
echo " </td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_extension']."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_feature_code']."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_app']."&nbsp;</td>\n";
//echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_pin_number']."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_data']."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_anti_app']."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_anti_data']."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_description']."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_app']." ".$row['call_flow_data']."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['call_flow_anti_app']." ".$row['call_flow_anti_data']."&nbsp;</td>\n";
echo " <td valign='top' class='row_stylebg' width='30%'>".$row['call_flow_description']."&nbsp;</td>\n";
echo " <td valign='top' align='right'>\n";
if (permission_exists('call_flow_edit')) {
echo " <a href='call_flow_edit.php?id=".$row['call_flow_uuid']."' alt='edit'>$v_link_label_edit</a>\n";