get_permalink($id)); } /** * 8 = droits de modification */ protected function get_acces_m() { global $PMBuserid; $acces_m = 1; if($this->id) $acces_m = $this->dom_1->getRights($PMBuserid,$this->id,8); if($acces_m == 0) { $this->error_message = 'mod_seri_error'; } return $acces_m; } public function proceed_form() { global $msg; global $serial_header; // affichage d'un form pour création, modification d'un périodique if(!$this->id) { // pas d'id, c'est une création print str_replace('!!page_title!!', $msg[4000].$msg[1003].$msg[4003], $serial_header); } else { print str_replace('!!page_title!!', $msg[4000].$msg[1003].$msg[4004], $serial_header); } $mySerial = $this->get_object_instance(); print $mySerial->do_form(); } protected function get_permalink($id=0) { if(!$id) $id = $this->id; return $this->url_base."&sub=view&serial_id=".$id; } protected function get_edit_link($id=0) { if(!$id) $id = $this->id; return $this->url_base."&sub=view&serial_id=".$id; } }