blob: 739cbb61fb1396f61701659935d61f5599f2dcd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
<?php defined("SYSPATH") or die("No direct script access.");
/**
* Gallery - a web based photo album viewer and editor
* Copyright (C) 2000-2011 Bharat Mediratta
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
class InPlaceEdit_Core {
private $rules = array();
private $messages = array();
private $callback = array();
private $initial_value;
private $action = "";
private $errors;
private $form;
static function factory($initial_value) {
$instance = new InPlaceEdit();
$instance->initial_value = $initial_value;
$instance->form = array("input" => $initial_value);
$instance->errors = array("input" => "");
return $instance;
}
public function action($action) {
$this->action = $action;
return $this;
}
public function rules($rules) {
$this->rules += $rules;
return $this;
}
public function messages($messages) {
$this->messages += $messages;
return $this;
}
public function callback($callback) {
$this->callback = $callback;
return $this;
}
public function validate() {
$post = Validation::factory($_POST);
if (!empty($this->callback)) {
$post->add_callbacks("input", $this->callback);
}
foreach ($this->rules as $rule) {
$post->add_rules("input", $rule);
}
$valid = $post->validate();
$this->form = array_merge($this->form, $post->as_array());
$this->errors = array_merge($this->errors, $post->errors());
return $valid;
}
public function render() {
$v = new View("in_place_edit.html");
$v->action = $this->action;
$v->form = $this->form;
$v->errors = $this->errors;
foreach ($v->errors as $key => $error) {
if (!empty($error)) {
$v->errors[$key] = $this->messages[$error];
}
}
return $v->render();
}
public function value() {
return $this->form["input"];
}
}
|