mise a jour pour mtweb.0.6.0
[mw_pages] / out / default / views / pages / admin / edit.php
1 <?php require $this->out_file("views/tinymce.init.js.php"); ?>
2
3 <h2>Modifier une page</h2>
4
5 <ul class="admin">
6   <li><a href="<?php echo $this->url("pages/admin"); ?>">Retour &agrave; la liste des pages</a></li>
7 </ul>
8
9 <form name="page_form" action="<?php echo $this->url("pages/admin/edit", array("id" => $this->out["page"]["id"])); ?>" method="post">
10   <ul class="form">
11     <li>
12       <p>
13         Titre :
14         <input type="text" size="50" name="title" id="title" value="<?php echo $this->out["page"]["title"]; ?>" />
15       </p>
16     </li>
17     <li>
18       <p>
19         Page parente :
20         <select name="id_parent">
21           <?php echo pages_arbo_edit_select_options($this->out["arbo"], $this->out["page"]["id"], $this->out["page"]["id_parent"], "&nbsp;&nbsp;"); ?>
22         </select>
23       </p>
24     </li>
25     <li>
26       <textarea class="tinymce" cols="60" rows="10" name="content" id="content"><?php echo htmlspecialchars($this->out["page"]["content"]); ?></textarea>
27     </li>
28     <li class="buttons">
29       <input type="submit" value="Enregistrer" />
30     </li>
31   </ul>
32 </form>