本文整理汇总了PHP中Check::find方法的典型用法代码示例。如果您正苦于以下问题:PHP Check::find方法的具体用法?PHP Check::find怎么用?PHP Check::find使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Check
的用法示例。
在下文中一共展示了Check::find方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: update_alert_email
public function update_alert_email($input_arr = array())
{
$input_arr['action'] = 'updating';
if (!$this->validate($input_arr)) {
//$this->format_error_messages($input_arr['email'], 'updating');
return false;
}
if ($check = Check::find(intval($input_arr['check_id']))) {
$this->check_id = $input_arr['check_id'];
$this->user_id = $check->user_id;
$this->alert_email = $input_arr['email'];
if ($this->save()) {
return true;
}
}
return false;
}
示例2: store
public function store($lang, $check_id = '')
{
if (intval($check_id)) {
if ($check = Check::find($check_id)) {
// Log::info($check->check_id);
$check_alert_email = new CheckAlertEmail();
if ($check_alert_email->store_alert_email(Input::all())) {
Session::flash('message', trans('kuu-validation.email_was_added'));
return Redirect::route('admin.alert', array('lang' => App::getLocale(), 'check_id' => $check_id));
//to('/admin/alert/'.$check_id);
} else {
Session::flash('error_message', $check_alert_email->get_error_message());
return Redirect::route('admin.alert', array('lang' => App::getLocale(), 'check_id' => $check_id));
//to('/admin/alert/'.$check_id);
}
}
}
Session::flash('error_message', trans('kuu-validation.check_not_found'));
return Redirect::route('admin.user', array('lang' => App::getLocale()));
}
示例3: delete_by_id
static function delete_by_id($check_id)
{
if ($check = Check::find($check_id)) {
return $check->delete_check();
} else {
return false;
}
}
示例4: getSiteInfo
public function getSiteInfo()
{
if ($check = Check::find(Input::get('check_id', 0))) {
return \Response::json(array('check_id' => Input::get('check_id', 0), 'type' => $check->type, 'url' => $check->url, 'host' => $check->host, 'options' => json_decode($check->options), 'alert_email' => $check->checkalertemail->toArray()));
} else {
return \Response::json(array('check_id' => Input::get('check_id', 0), 'type' => 'error'));
}
}