/** * Displays photo info * * @param $id * @return \Illuminate\View\View */ public function viewAction($id) { $data = array(); $errors = array(); if (!$id) { $errors[] = 'Invalid photo ID'; $data['errors'] = $errors; return view('cms.photos.view', $data); } $photo = PhotosCms::find($id); if (!$photo) { $errors[] = 'Photo not found'; $data['errors'] = $errors; return view('cms.photos.view', $data); } $photo = $photo->toArray(); switch ($photo['type']) { case 1: $photo['type'] = 'Review'; break; case 2: $photo['type'] = 'Check-In'; break; case 6: $photo['type'] = 'Restaurant Photo'; break; default: break; } $photo['url'] = env('WEB_HOST') . 'uploads/default/' . $photo['url']; switch ($photo['status']) { case 0: $photo['status'] = 'Deactivated'; break; case 1: $photo['status'] = 'Active'; break; default: break; } $photo['date_uploaded'] = date('M d, Y H:i:s', strtotime($photo['date_uploaded'])); $data['photo'] = $photo; return view('cms.photos.view', $data); }
/** * Return the details of the reported photo * Used for the View popup * * @param $photo_id * @return View */ public function viewPhotoAction($photo_id) { $data = array(); $photo = PhotosCms::find($photo_id)->toArray(); if ($photo) { foreach ($photo as $key => $value) { if ($key == 'type') { if ($value === CONSTANTS::REVIEW) { $photo[$key] = 'Review'; } elseif ($value === CONSTANTS::CHECKIN) { $photo[$key] = 'Checkin'; } elseif ($value === CONSTANTS::BOOKMARK) { $photo[$key] = 'Bookmark'; } elseif ($value === CONSTANTS::COMMENT) { $photo[$key] = 'Comment'; } elseif ($value === CONSTANTS::PHOTO) { $photo[$key] = 'Photo'; } elseif ($value === CONSTANTS::RESTAURANT) { $photo[$key] = 'Restaurant'; } } if ($key == 'status') { if ($value === CONSTANTS::STATUS_ACTIVE) { $photo[$key] = 'Active'; } else { $photo[$key] = 'Inactive'; } } } $data['photo'] = $photo; } return view('cms.reported.photos.view', $data); }