X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=classes%2Fpltableeditor.php;h=c849f37cb5e3d7a382eb78faf6f1be6a5383f74d;hb=1d10d3fd659fa8eb7c663d6bb599bc8bbc0feeb3;hp=955ac30d3162292728a7ec2b83ba336524aaa184;hpb=f04ecf1ba23d449d33be79bb3a0e6410a60f2f13;p=platal.git diff --git a/classes/pltableeditor.php b/classes/pltableeditor.php index 955ac30..c849f37 100644 --- a/classes/pltableeditor.php +++ b/classes/pltableeditor.php @@ -49,7 +49,8 @@ class PLTableEditor { * $idfield : the field of the table which is the id, ex: id * $editid : is the id editable or not (if not, it is considered as an int) */ - function PLTableEditor($plname, $table, $idfield, $editid=false) { + function PLTableEditor($plname, $table, $idfield, $editid=false) + { $this->pl = $plname; $this->table = $table; $this->idfield = $idfield; @@ -89,6 +90,15 @@ class PLTableEditor { } $this->vars[$idfield]['desc'] = 'id'; } + // called before creating a new entry + function prepare_new() + { + $entry = array(); + foreach ($this->vars as $field => $descr) { + $entry[$field] = $descr['Default']; + } + return $this->prepare_edit($entry); + } // called before editing $entry function prepare_edit(&$entry) { foreach ($this->vars as $field => $descr) { @@ -168,6 +178,7 @@ class PLTableEditor { if (!$this->idfield_editable) { $r = XDB::query("SELECT MAX({$this->idfield})+1 FROM {$this->table}"); $page->assign('id', $r->fetchOneCell()); + $page->assign('entry', $this->prepare_new()); } $list = false; }