mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-02-11 05:34:59 +00:00
Usability Enhancement: Click on list rows to View/Edit items.
Conference Center: Misc minor visual mods. Contacts: Misc minor visual mods.
This commit is contained in:
@@ -100,14 +100,12 @@ require_once "resources/paging.php";
|
||||
$row_style["1"] = "row_style1";
|
||||
|
||||
echo "<div align='center'>\n";
|
||||
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
||||
echo "<table class='tr_hover' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
||||
|
||||
if ($result_count == 0) {
|
||||
echo "<tr>\n";
|
||||
echo "<th>\n";
|
||||
echo " \n";
|
||||
echo "</th>\n";
|
||||
echo "<td class='list_control_icons'>";
|
||||
echo "<th> </th>\n";
|
||||
echo "<td class='list_control_icon'>";
|
||||
echo "<a href='contact_note_edit.php?contact_uuid=".$_GET['id']."' alt='".$text['button-add']."'>$v_link_label_add</a>";
|
||||
echo "</td>\n";
|
||||
echo "</tr>\n";
|
||||
@@ -117,7 +115,7 @@ require_once "resources/paging.php";
|
||||
$contact_note = $row['contact_note'];
|
||||
$contact_note = str_replace("\n","<br />",$contact_note);
|
||||
|
||||
echo "<tr>\n";
|
||||
echo "<tr >\n";
|
||||
echo "<th>\n";
|
||||
echo " ".$row['last_mod_date']." \n";
|
||||
echo " ".$row['last_mod_user']." \n";
|
||||
@@ -127,9 +125,9 @@ require_once "resources/paging.php";
|
||||
echo "<td align='right' width='42'>\n";
|
||||
echo " <a href='contact_note_edit.php?contact_uuid=".$_GET['id']."' alt='".$text['button-add']."'>$v_link_label_add</a>\n";
|
||||
echo "</td>\n";
|
||||
echo "<tr>\n";
|
||||
|
||||
echo "<tr >\n";
|
||||
echo "</tr>\n";
|
||||
$tr_link = "href='contact_note_edit.php?contact_uuid=".$row['contact_uuid']."&id=".$row['contact_note_uuid']."'";
|
||||
echo "<tr ".$tr_link.">\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>".$contact_note." </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".$row['last_mod_date']." </td>\n";
|
||||
//echo " <td valign='top' class='".$row_style[$c]."'>".$row['last_mod_user']." </td>\n";
|
||||
@@ -139,10 +137,6 @@ require_once "resources/paging.php";
|
||||
echo " </td>\n";
|
||||
echo "</tr>\n";
|
||||
|
||||
echo "<tr>\n";
|
||||
echo " <td> </td>\n";
|
||||
echo "</tr>\n";
|
||||
|
||||
if ($c==0) { $c=1; } else { $c=0; }
|
||||
} //end foreach
|
||||
unset($sql, $result, $row_count);
|
||||
|
||||
Reference in New Issue
Block a user