Esempio n. 1
0
										<div class="clear"></div>
									</td>
								</tr>
							</tfoot>
						 
							<tbody>
								<?php 
    $mDriverList = $mPreviousDriverList;
    for ($i = 0; $i < sizeof($mDriverList); $i++) {
        $mDriver = new Driver($mDriverList[$i]);
        $mJob = new Job($mDriver->getCurrentJob());
        $mVehicle = new Vehicle($mDriver->getCurrentVehicle());
        echo "<tr>";
        echo "<td><img height='15' width='15' src='../../../images/driver_icon.png'>&nbsp;&nbsp;<b><a href='detail.php?id=" . $mDriver->getId() . "' style='text-transform:uppercase;' >" . $mDriver->getName() . "</a></b></td>";
        echo "<td>" . $mDriver->getPhone() . "</td>";
        echo "<td>" . $mDriver->getAddress() . "</td>";
        echo "\t\t\t\t\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t<!-- Icons -->\n\t\t\t\t\t\t\t\t\t\t <a href='#' title='Edit'><img src='../../../images/pencil.png' alt='Edit'></a>\n\t\t\t\t\t\t\t\t\t\t <a href='#' title='Delete' onClick='onDelete(" . $mDriver->getId() . ")'><img src='../../../images/cross.png' alt='Delete'></a>&nbsp;&nbsp;\n\t\t\t\t\t\t\t\t\t\t <a href='#' title='Edit Meta'><img src='../../../images/hammer_screwdriver.png' alt='Edit Meta'></a>\n\t\t\t\t\t\t\t\t\t</td>";
        echo "</tr>";
    }
    ?>
							</tbody>
							
						</table>
						<?php 
}
?>
					</div> <!-- End #prev -->

                   
				</div> <!-- End .content-box-content -->
				
Esempio n. 2
0
				<div  class="content-box-content-detail" style="width:58%;height:88%;float:left;overflow-y:auto">

					
					<div id="personal_info" style="margin:15px 5px 20px 10px">
						<img id="type" height="35" width="35" src="../../res/driver_icon.png" > <span style="vertical-align:10px;"><b style="font-size:25px;"><?php 
echo $mDriver->getName();
?>
 </b>	</span>	
						<br><br><input class="button" type='button' value='Edit'> &nbsp;&nbsp;&nbsp; 
						<br><br><br>
					
						<div id="address_info">
							<img id="address_icon" height="20" width="20" src="../../res/address.png" title="Address" alt="Address">&nbsp;
							<b><span id="address_view" style='vertical-align:2px;'>
								<?php 
echo $mDriver->getAddress();
?>
								</span>
							
						</div>
						<br><br>
						<div id="contact_info">
							<img id="contact_icon" height="20" width="20" src="../../res/phone_icon.png" title="Phone" alt="Phone">&nbsp;
							<b><span id="address_view" style='vertical-align:2px;'>
								<?php 
echo $mDriver->getPhone();
?>
								</span>
							
						</div>
						<br><br>