本文整理汇总了PHP中Draft::errors方法的典型用法代码示例。如果您正苦于以下问题:PHP Draft::errors方法的具体用法?PHP Draft::errors怎么用?PHP Draft::errors使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Draft
的用法示例。
在下文中一共展示了Draft::errors方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: update
public static function update($id)
{
self::check_logged_in();
$params = $_POST;
$attributes = array('id' => $id, 'name' => $row['name'], 'laatija_id' => $row['laatija_id'], 'hero1' => $row['hero1'], 'hero2' => $row['hero2'], 'hero3' => $row['hero3'], 'hero4' => $row['hero4'], 'hero5' => $row['hero5'], 'vaikeus' => $row['vaikeus'], 'suunnitelma' => $row['suunnitelma']);
$draft = new Draft($attributes);
$errors = $draft->errors();
if (count($errors) == 0) {
$draft->update();
Redirect::to('/drafts' . $draft->id, array('message' => 'Drafti on lisätty arkistoon!'));
} else {
View::make('drafts/new.html', array('errors' => $errors, 'attributes' => $attributes));
}
}