$action = isset($_REQUEST["action"]) ? $_REQUEST["action"] : "";
switch($action)
{
+case "set_stylesheet":
+ if (isset($_REQUEST['preset_style_sheet'])) {
+ $sheet = $_REQUEST['preset_style_sheet'];
+ $page->info(__("Copying style sheet") . " $sheet.css");
+ $rcs->commit($dir,$file,file_get_contents("{$globals->root}/styles/$sheet.css"), "replaced by $sheet.css");
+ }
+ break;
+
case "update":
// update the current file with form contents
if (isset($_REQUEST['file_content'])) {
$page->assign('file_content',htmlspecialchars(file_get_contents($myfile), ENT_NOQUOTES));
$page->assign('submit',__("Submit"));
+// menu for stylesheet replacement
+if ($file == $globals->cssfile) {
+ $page->assign('style_sheets', $globals->style_sheets);
+ $page->assign('preset_style_sheet', $globals->barrel_style_sheet);
+ $page->assign('msg_set_stylesheet', __("replace current style sheet by a preset one"));
+ $page->assign('msg_replace',__("Replace"));
+}
+
// top toolbar
$page->toolbar(__("Page"), $bpage->make_toolbar());
$page->toolbar(__("File"), $bfile->make_toolbar(true));
+{if $msg_set_stylesheet}
+<form name="form_stylesheet" method="post" action="{$post}">
+<input type="hidden" name="action" value="set_stylesheet" />
+<input type="hidden" name="file" value="{$file}" />
+<input type="hidden" name="dir" value="{$dir}" />
+<table class="light">
+<tr>
+ <td>{$msg_set_stylesheet}</td>
+ <td>{html_options name='preset_style_sheet' selected=$preset_style_sheet options=$style_sheets}</td>
+ <td><input type="submit" value="{$msg_replace}"/></td>
+</tr>
+</table>
+</form>
+
+<br/>
+
+{/if}
+
<form name="modif" method="post" action="{$post}">
<input type="hidden" name="action" value="update" />
<input type="hidden" name="file" value="{$file}" />