本文整理匯總了PHP中Vehicle::registrationNoUpdated方法的典型用法代碼示例。如果您正苦於以下問題:PHP Vehicle::registrationNoUpdated方法的具體用法?PHP Vehicle::registrationNoUpdated怎麽用?PHP Vehicle::registrationNoUpdated使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Vehicle
的用法示例。
在下文中一共展示了Vehicle::registrationNoUpdated方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: changeOwnerEdit
/**
* Showing From For Changing vehicle Owner
* @param int $id Id of vehicle whose owner is being changed.
* @return view Form that shows old data and collects data of new owner.
*/
public function changeOwnerEdit($id)
{
$vehicle = Vehicle::find($id);
// BEGIN ALL DATA NEEDED BY EDIT FORM
$vehicleData = Vehicle::vehicleData($id);
// IF VEHICLE USE TYPE IS COMMERCIAL PASSENGERS
if ($vehicleData->vehicles_use_type == 2) {
$noOfPas = Vehicle::noOfPassengers($id);
}
//else $noOfPas = "";
// GENERIC DATA
$pendingFinesMsg = Vehicle::getVehiclePendingFinesMessage($id);
$vehicleStatus = VehicleStatus::listVehicleStatus();
$colorList = Color::listColors();
$vehicleUseType = VehicleUseType::listVehicleUseTypes();
$country = Country::listCountries();
$drivingStatusName = DrivingStatus::lists('driving_status_name', 'id');
$registrationNoUpdated = Vehicle::registrationNoUpdated($id);
$insurance = $vehicle->insurance;
$lien = $vehicle->lien;
// END ALL DATA NEEDED BY REGISTRATION FORM
//MAKING AN ARRAY OF DATA THAT IS NEEDED IN FORM
$data = compact('vehicleData', 'pendingFinesMsg', 'noOfPas', 'vehicleStatus', 'colorList', 'vehicleUseType', 'country', 'drivingStatusName', 'registrationNoUpdated', 'insurance', 'lien');
return View::make('vehicle.change-owner', $data);
}