Generated docs for classEditor.
[awl.git] / inc / classEditor.php
blob17d7b81db24fd2dd9b1d573113e8c892fafed06e
1 <?php
2 /**
3 * Class for editing a record using a templated form.
5 * @package awl
6 * @subpackage classEditor
7 * @author Andrew McMillan <andrew@mcmillan.net.nz>
8 * @copyright Catalyst IT Ltd, Morphoss Ltd <http://www.morphoss.com/>
9 * @license http://gnu.org/copyleft/gpl.html GNU GPL v2
12 require_once("DataUpdate.php");
13 require_once("DataEntry.php");
15 /**
16 * A class for the fields in the editor
17 * @package awl
19 class EditorField
21 var $Field;
22 var $Sql;
23 var $Value;
24 var $Attributes;
25 var $LookupSql;
26 var $OptionList;
28 function __construct( $field, $sql="", $lookup_sql="" ) {
29 global $session;
30 $this->Field = $field;
31 $this->Sql = $sql;
32 $this->LookupSql = $lookup_sql;
33 $this->Attributes = array();
34 $session->Log("DBG: New field '%s' SQL='%s', Lookup='%s'", $field, $sql, $lookup_sql );
37 function Set($value) {
38 $this->Value = $value;
41 function SetSql( $sql ) {
42 $this->Sql = $sql;
45 function SetLookup( $lookup_sql ) {
46 $this->LookupSql = $lookup_sql;
49 function SetOptionList( $options, $current = null, $parameters = null) {
50 if ( gettype($options) == 'array' ) {
51 $this->OptionList = '';
53 if ( is_array($parameters) ) {
54 if ( isset($parameters['maxwidth']) ) $maxwidth = max(4,intval($parameters['maxwidth']));
55 if ( isset($parameters['translate']) ) $translate = true;
58 foreach( $options AS $k => $v ) {
59 if (is_array($current)) {
60 $selected = ( ( in_array($k,$current,true) || in_array($v,$current,true)) ? ' selected="selected"' : '' );
62 else {
63 $selected = ( ( "$k" == "$current" || "$v" == "$current" ) ? ' selected="selected"' : '' );
65 if ( isset($translate) ) $v = translate( $v );
66 if ( isset($maxwidth) ) $v = substr( $v, 0, $maxwidth);
67 $this->OptionList .= "<option value=\"".htmlspecialchars($k)."\"$selected>".htmlspecialchars($v)."</option>";
70 else {
71 $this->OptionList = $options;
75 function GetTarget() {
76 if ( $this->Sql == "" ) return $this->Field;
77 return "$this->Sql AS $this->Field";
80 function AddAttribute( $k, $v ) {
81 $this->Attributes[$k] = $v;
84 function RenderAttributes() {
85 $attributes = "";
86 if ( count($this->Attributes) == 0 ) return $attributes;
87 foreach( $this->Attributes AS $k => $v ) {
88 $attributes .= " $k=\"" . str_replace('"', '\\"', $v) . '"';
90 return $attributes;
96 /**
97 * The class for the Editor form in full
98 * @package awl
100 class Editor
102 var $Title;
103 var $Action;
104 var $Fields;
105 var $OrderedFields;
106 var $BaseTable;
107 var $Joins;
108 var $Where;
109 var $NewWhere;
110 var $Order;
111 var $Limit;
112 var $Query;
113 var $Template;
114 var $RecordAvailable;
115 var $Record;
116 var $SubmitName;
117 var $Id;
119 function __construct( $title = "", $fields = null ) {
120 global $c, $session, $form_id_increment;
121 $this->Title = $title;
122 $this->Order = "";
123 $this->Limit = "";
124 $this->Template = "";
125 $this->RecordAvailable = false;
126 $this->SubmitName = 'submit';
127 $form_id_increment = (isset($form_id_increment)? ++$form_id_increment : 1);
128 $this->Id = 'editor_'.$form_id_increment;
130 if ( isset($fields) ) {
131 if ( is_array($fields) ) {
132 foreach( $fields AS $k => $v ) {
133 $this->AddField($v);
136 else if ( is_string($fields) ) {
137 // We've been given a table name, so get all fields for it.
138 $this->BaseTable = $fields;
139 $field_list = get_fields($fields);
140 foreach( $field_list AS $k => $v ) {
141 $this->AddField($k);
145 dbg_error_log("classEditor", "DBG: New editor called $title");
148 function &AddField( $field, $sql="", $lookup_sql="" ) {
149 $this->Fields[$field] = new EditorField( $field, $sql, $lookup_sql );
150 $this->OrderedFields[] = $field;
151 return $this->Fields[$field];
154 function SetSql( $field, $sql ) {
155 $this->Fields[$field]->SetSql( $sql );
158 function SetLookup( $field, $lookup_sql ) {
159 if (is_object($this->Fields[$field])) {
160 $this->Fields[$field]->SetLookup( $lookup_sql );
164 function Value( $value_field_name ) {
165 if ( !isset($this->Record->{$value_field_name}) ) return null;
166 return $this->Record->{$value_field_name};
169 function Assign( $value_field_name, $new_value ) {
170 $this->Record->{$value_field_name} = $new_value;
173 function Id( $id = null ) {
174 if ( isset($id) ) $this->Id = preg_replace( '#[^a-z0-9_+-]#', '', $id);
175 return $this->Id;
178 function SetOptionList( $field, $options, $current = null, $parameters = null) {
179 $this->Fields[$field]->SetOptionList( $options, $current, $parameters );
182 function AddAttribute( $field, $k, $v ) {
183 $this->Fields[$field]->AddAttribute($k,$v);
187 function SetBaseTable( $base_table ) {
188 $this->BaseTable = $base_table;
191 function SetJoins( $join_list ) {
192 $this->Joins = $join_list;
197 * Accessor for the Title for the browse, which could set the title also.
199 * @param string $new_title The new title for the browser
200 * @return string The current title for the browser
202 function Title( $new_title = null ) {
203 if ( isset($new_title) ) $this->Title = $new_title;
204 return $this->Title;
208 function SetSubmitName( $new_submit ) {
209 $this->SubmitName = $new_submit;
212 function IsSubmit() {
213 return isset($_POST[$this->SubmitName]);
216 function IsUpdate() {
217 $is_update = $this->Available();
218 if ( isset( $_POST['_editor_action']) && isset( $_POST['_editor_action'][$this->Id]) ) {
219 $is_update = ( $_POST['_editor_action'][$this->Id] == 'update' );
220 dbg_error_log("ERROR", "Checking update: %s => %d", $_POST['_editor_action'][$this->Id], $is_update );
222 return $is_update;
225 function IsCreate() {
226 return ! $this->IsUpdate();
229 function SetWhere( $where_clause ) {
230 $this->Where = $where_clause;
233 function WhereNewRecord( $where_clause ) {
234 $this->NewWhere = $where_clause;
237 function MoreWhere( $operator, $more_where ) {
238 if ( $this->Where == "" ) {
239 $this->Where = $more_where;
240 return;
242 $this->Where = "$this->Where $operator $more_where";
245 function AndWhere( $more_where ) {
246 $this->MoreWhere("AND",$more_where);
249 function OrWhere( $more_where ) {
250 $this->MoreWhere("OR",$more_where);
253 function SetTemplate( $template ) {
254 $this->Template = $template;
257 function Layout( $template ) {
258 if ( strstr( $template, '##form##' ) === false && stristr( $template, '<form' ) === false ) $template = '##form##' . $template;
259 if ( stristr( $template, '</form' ) === false ) $template .= '</form>';
260 $this->Template = $template;
263 function Available( ) {
264 return $this->RecordAvailable;
267 function SetRecord( $row ) {
268 $this->Record = $row;
269 $this->RecordAvailable = is_object($this->Record);
270 return $this->Record;
274 * Set some particular values to the ones from the array.
276 * @param array $values An array of fieldname / value pairs
278 function Initialise( $values ) {
279 $this->RecordAvailable = false;
280 foreach( $values AS $fname => $value ) {
281 $this->Record->{$fname} = $value;
286 function GetRecord( $where = "" ) {
287 global $session;
288 $target_fields = "";
289 foreach( $this->Fields AS $k => $column ) {
290 if ( $target_fields != "" ) $target_fields .= ", ";
291 $target_fields .= $column->GetTarget();
293 if ( $where == "" ) $where = $this->Where;
294 $sql = sprintf( "SELECT %s FROM %s %s WHERE %s %s %s",
295 $target_fields, $this->BaseTable, $this->Joins, $where, $this->Order, $this->Limit);
296 $this->Query = new PgQuery( $sql );
297 $session->Log("DBG: EditorGetQry: %s", $sql );
298 if ( $this->Query->Exec("Browse:$this->Title:DoQuery") ) {
299 $this->Record = $this->Query->Fetch();
300 $this->RecordAvailable = is_object($this->Record);
302 if ( !$this->RecordAvailable ) {
303 $this->Record = (object) array();
305 return $this->Record;
310 * Replace parts into the form template.
311 * @param array $matches The matches found which preg_replace_callback is calling us for.
312 * @return string What we want to replace this match with.
314 function ReplaceEditorPart($matches)
316 global $session;
318 // $matches[0] is the complete match
319 switch( $matches[0] ) {
320 case "##form##": /** @todo It might be nice to construct a form ID */
321 return sprintf('<form method="POST" enctype="multipart/form-data" class="editor" id="%s">', $this->Id);
322 case "##submit##":
323 $action = ( $this->RecordAvailable ? 'update' : 'insert' );
324 $submittype = ($this->RecordAvailable ? translate('Apply Changes') : translate('Create'));
325 return sprintf('<input type="hidden" name="_editor_action[%s]" value="%s"><input type="submit" class="submit" name="%s" value="%s">',
326 $this->Id, $action, $this->SubmitName, $submittype );
329 // $matches[1] the match for the first subpattern
330 // enclosed in '(...)' and so on
331 $field_name = $matches[1];
332 $what_part = $matches[3];
333 $part3 = (isset($matches[5]) ? $matches[5] : null);
335 $value_field_name = $field_name;
336 if ( substr($field_name,0,4) == 'xxxx' ) {
337 // Sometimes we will prepend 'xxxx' to the field name so that the field
338 // name differs from the column name in the database. We also remove it
339 // when it's submitted.
340 $value_field_name = substr($field_name,4);
343 $attributes = "";
344 if ( isset($this->Fields[$field_name]) && is_object($this->Fields[$field_name]) ) {
345 $field = $this->Fields[$field_name];
346 $attributes = $field->RenderAttributes();
348 $field_value = (isset($this->Record->{$value_field_name}) ? $this->Record->{$value_field_name} : null);
350 switch( $what_part ) {
351 case "options":
352 $currval = $part3;
353 if ( ! isset($currval) && isset($field_value) )
354 $currval = $field_value;
355 if ( isset($field->OptionList) && $field->OptionList != "" ) {
356 $option_list = $field->OptionList;
358 else {
359 $session->Log("DBG: Current=%s, OptionQuery: %s", $currval, $field->LookupSql );
360 $opt_qry = new PgQuery( $field->LookupSql );
361 $option_list = $opt_qry->BuildOptionList($currval, "FieldOptions: $field_name" );
362 $field->OptionList = $option_list;
364 return $option_list;
365 case "select":
366 $currval = $part3;
367 if ( ! isset($currval) && isset($field_value) )
368 $currval = $field_value;
369 if ( isset($field->OptionList) && $field->OptionList != "" ) {
370 $option_list = $field->OptionList;
372 else {
373 $session->Log("DBG: Current=%s, OptionQuery: %s", $currval, $field->LookupSql );
374 $opt_qry = new PgQuery( $field->LookupSql );
375 $option_list = $opt_qry->BuildOptionList($currval, "FieldOptions: $field_name" );
376 $field->OptionList = $option_list;
378 return "<select class=\"entry\" name=\"$field_name\"$attributes>$option_list</select>";
379 case "checkbox":
380 switch ( $field_value ) {
381 case 'f':
382 case 'off':
383 case 'false':
384 case '':
385 case '0':
386 $checked = "";
387 break;
389 default:
390 $checked = " CHECKED";
392 return "<input type=\"hidden\" value=\"off\" name=\"$field_name\"><input class=\"entry\" type=\"checkbox\" value=\"on\" name=\"$field_name\"$checked$attributes>";
393 case "input":
394 $size = (isset($part3) ? $part3 : 6);
395 return "<input class=\"entry\" value=\"".htmlspecialchars($field_value)."\" name=\"$field_name\" size=\"$size\"$attributes>";
396 case "file":
397 $size = (isset($part3) ? $part3 : 30);
398 return "<input type=\"file\" class=\"entry\" value=\"".htmlspecialchars($field_value)."\" name=\"$field_name\" size=\"$size\"$attributes>";
399 case "money":
400 $size = (isset($part3) ? $part3 : 8);
401 return "<input class=\"money\" value=\"".htmlspecialchars(sprintf("%0.2lf",$field_value))."\" name=\"$field_name\" size=\"$size\"$attributes>";
402 case "date":
403 $size = (isset($part3) ? $part3 : 10);
404 return "<input class=\"date\" value=\"".htmlspecialchars($field_value)."\" name=\"$field_name\" size=\"$size\"$attributes>";
405 case "textarea":
406 list( $cols, $rows ) = split( 'x', $part3);
407 return "<textarea class=\"entry\" name=\"$field_name\" rows=\"$rows\" cols=\"$cols\"$attributes>".htmlspecialchars($field_value)."</textarea>";
408 case "hidden":
409 return sprintf( "<input type=\"hidden\" value=\"%s\" name=\"$field_name\">", htmlspecialchars($field_value) );
410 case "password":
411 return sprintf( "<input type=\"password\" value=\"%s\" name=\"$field_name\" size=\"10\">", htmlspecialchars($part3) );
412 case "encval":
413 case "enc":
414 return htmlspecialchars($field_value);
415 case "submit":
416 $action = ( $this->RecordAvailable ? 'update' : 'insert' );
417 return sprintf('<input type="hidden" name="_editor_action[%s]" value="%s"><input type="submit" class="submit" name="%s" value="%s">',
418 $this->Id, $action, $this->SubmitName, $value_field_name );
419 default:
420 return str_replace( "\n", "<br />", $field_value );
425 * Render the templated component. The heavy lifting is done by the callback...
427 function Render( $title_tag = null ) {
428 dbg_error_log("classEditor", "Rendering editor $this->Title" );
429 if ( $this->Template == "" ) $this->DefaultTemplate();
431 $html = sprintf('<div class="editor" id="%s">', $this->Id);
432 if ( isset($this->Title) && $this->Title != "" ) {
433 if ( !isset($title_tag) ) $title_tag = 'h1';
434 $html = "<$title_tag>$this->Title</$title_tag>\n";
437 // Stuff like "##fieldname.part## gets converted to the appropriate value
438 $replaced = preg_replace_callback("/##([^#.]+)(\.([^#.]+))?(\.([^#.]+))?##/", array(&$this, "ReplaceEditorPart"), $this->Template );
439 $html .= $replaced;
441 $html .= '</div>';
442 return $html;
446 * Write the record
447 * @param boolean $is_update Tell the write whether it's an update or insert. Hopefully it
448 * should be able to figure it out though.
450 function Write( $is_update = null ) {
451 global $c, $component;
453 dbg_error_log("classEditor", "DBG: Writing editor $this->Title");
455 if ( !isset($is_update) ) {
456 if ( isset( $_POST['_editor_action']) && isset( $_POST['_editor_action'][$this->Id]) ) {
457 $is_update = ( $_POST['_editor_action'][$this->Id] == 'update' );
459 else {
460 /** @todo Our old approach will not work for translation. We need to have a hidden field
461 * containing the submittype. Probably we should add placeholders like ##form##, ##script## etc.
462 * which the editor can use for internal purposes.
464 // Then we dvine the action by looking at the submit button value...
465 $is_update = preg_match( '/(save|update|apply)/i', $_POST[$this->SubmitName] );
466 dbg_error_log("ERROR", $_SERVER['REQUEST_URI']. " is using a deprecated method for controlling insert/update" );
469 $this->Action = ( $is_update ? "update" : "create" );
470 $qry = new PgQuery( sql_from_post( $this->Action, $this->BaseTable, "WHERE ".$this->Where ) );
471 if ( !$qry->Exec("Editor::Write") ) {
472 $c->messages[] = "ERROR: $qry->errorstring";
473 return 0;
475 if ( $this->Action == "create" && isset($this->NewWhere) ) {
476 $this->GetRecord($this->NewWhere);
478 else {
479 $this->GetRecord($this->Where);
481 return $this->Record;