本文整理汇总了PHP中Photo::updatePhotos方法的典型用法代码示例。如果您正苦于以下问题:PHP Photo::updatePhotos方法的具体用法?PHP Photo::updatePhotos怎么用?PHP Photo::updatePhotos使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Photo
的用法示例。
在下文中一共展示了Photo::updatePhotos方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: updatePost
public function updatePost()
{
if (Request::isMethod('post')) {
$input = Input::all();
$updateEvent = Events::UpdateEvent($input);
// check if any mutliple upload photo
$CountPhoto = Photo::where('user_id', Auth::user()->id)->where('tmp', Session::get('time'))->count();
if ($CountPhoto > 0) {
// update photo
Photo::updatePhotos('events', $input['id']);
Photo::rollback();
}
if ($updateEvent != 'ok') {
// get session validation
Session::put('validasi', 'event');
Session::flash('validasi', $updateEvent);
return Redirect::route('admin.event.update', $input['id'])->withInput();
} else {
Session::flash('sukses', 'Events Berhasil di Update');
return Redirect::route('admin.event')->withInput();
}
}
}
示例2: updatePost
public function updatePost()
{
if (Request::isMethod('post')) {
$input = Input::all();
$updateEvent = SocialTarget::UpdateSocialTarget($input);
$CountPhoto = Photo::where('tmp', Session::get('time'))->count();
if ($CountPhoto > 0) {
Photo::updatePhotos('social_targets', $input['id']);
Photo::roolback();
}
if ($updateEvent != 'ok') {
// get session validation
Session::put('validasi', 'social_targets');
Session::flash('validasi', $updateEvent);
return Redirect::route('admin.social-target.update', $input['id'])->withInput();
} else {
Session::flash('sukses', 'Target Sosial Berhasil di Update');
return Redirect::route('admin.social-target')->withInput();
}
}
}
示例3: updatePost
public function updatePost()
{
if (Request::isMethod('post')) {
$input = Input::all();
$updateSocialAction = SocialAction::UpdateSocialAction($input);
// check if any mutliple upload photo
$CountPhoto = Photo::where('tmp', Session::get('time'))->count();
if ($CountPhoto > 0) {
Photo::updatePhotos('social_actions', $input['id']);
Photo::roolback();
}
if ($updateSocialAction != 'ok') {
Session::flash('validasi', $updateSocialAction);
return Redirect::route('admin.social-action.update', array($input['id']))->withInput();
} else {
// get session validation
Session::put('validasi', 'social_actions');
Session::flash('sukses', 'Aksi Sosial Berhasil di Update');
return Redirect::route('admin.social-action')->withInput();
}
}
}