mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-22 16:33:00 +00:00
Add editing message that appears just before the edit button
This commit is contained in:
parent
881418dded
commit
f5b0b85603
4 changed files with 13 additions and 3 deletions
|
@ -131,7 +131,11 @@ $settings->nav_links_bottom = [
|
||||||
];
|
];
|
||||||
|
|
||||||
// A message that will appear at the bottom of every page. May contain HTML.
|
// A message that will appear at the bottom of every page. May contain HTML.
|
||||||
$settings->footer_message = "All content is under <a href='?page=License'>this license</a>.";
|
$settings->footer_message = "All content is under <a href='?page=License'>this license</a>. Please make sure that you read and understand the license, especially if you are thinking about copying some (or all) of this site's content, as it may restrict you from doing so.";
|
||||||
|
|
||||||
|
// A message that will appear just before the submit button on the editing
|
||||||
|
// page. May contain HTML.
|
||||||
|
$settings->editing_message = "By submitting your edit, you are agreeing to release your changes under <a href='?action=view&page=License'>this license</a>. Also note that if you don't want your work to be edited by other users of this site, please don't submit it here!";
|
||||||
|
|
||||||
// A string of css to include. Will be included in the <head> of every page
|
// A string of css to include. Will be included in the <head> of every page
|
||||||
// inside a <style> tag. This may also be a url - urls will be referenced via a
|
// inside a <style> tag. This may also be a url - urls will be referenced via a
|
||||||
|
@ -1145,6 +1149,7 @@ register_module([
|
||||||
}
|
}
|
||||||
$content .= "<form method='post' action='index.php?action=save&page=" . rawurlencode($page) . "&action=save'>
|
$content .= "<form method='post' action='index.php?action=save&page=" . rawurlencode($page) . "&action=save'>
|
||||||
<textarea name='content'>$pagetext</textarea>
|
<textarea name='content'>$pagetext</textarea>
|
||||||
|
<p>$settings->editing_message</p>
|
||||||
<input type='submit' value='Save Page' />
|
<input type='submit' value='Save Page' />
|
||||||
</form>";
|
</form>";
|
||||||
exit(page_renderer::render_main("$title - $settings->sitename", $content));
|
exit(page_renderer::render_main("$title - $settings->sitename", $content));
|
||||||
|
|
|
@ -50,7 +50,7 @@
|
||||||
"author": "Starbeamrainbowlabs",
|
"author": "Starbeamrainbowlabs",
|
||||||
"description": "Allows you to edit pages by adding the edit and save actions. You should probably include this one.",
|
"description": "Allows you to edit pages by adding the edit and save actions. You should probably include this one.",
|
||||||
"id": "page-edit",
|
"id": "page-edit",
|
||||||
"lastupdate": 1442929757,
|
"lastupdate": 1443591764,
|
||||||
"optional": false
|
"optional": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -58,6 +58,7 @@ register_module([
|
||||||
}
|
}
|
||||||
$content .= "<form method='post' action='index.php?action=save&page=" . rawurlencode($page) . "&action=save'>
|
$content .= "<form method='post' action='index.php?action=save&page=" . rawurlencode($page) . "&action=save'>
|
||||||
<textarea name='content'>$pagetext</textarea>
|
<textarea name='content'>$pagetext</textarea>
|
||||||
|
<p>$settings->editing_message</p>
|
||||||
<input type='submit' value='Save Page' />
|
<input type='submit' value='Save Page' />
|
||||||
</form>";
|
</form>";
|
||||||
exit(page_renderer::render_main("$title - $settings->sitename", $content));
|
exit(page_renderer::render_main("$title - $settings->sitename", $content));
|
||||||
|
|
|
@ -128,7 +128,11 @@ $settings->nav_links_bottom = [
|
||||||
];
|
];
|
||||||
|
|
||||||
// A message that will appear at the bottom of every page. May contain HTML.
|
// A message that will appear at the bottom of every page. May contain HTML.
|
||||||
$settings->footer_message = "All content is under <a href='?page=License'>this license</a>.";
|
$settings->footer_message = "All content is under <a href='?page=License'>this license</a>. Please make sure that you read and understand the license, especially if you are thinking about copying some (or all) of this site's content, as it may restrict you from doing so.";
|
||||||
|
|
||||||
|
// A message that will appear just before the submit button on the editing
|
||||||
|
// page. May contain HTML.
|
||||||
|
$settings->editing_message = "By submitting your edit, you are agreeing to release your changes under <a href='?action=view&page=License'>this license</a>. Also note that if you don't want your work to be edited by other users of this site, please don't submit it here!";
|
||||||
|
|
||||||
// A string of css to include. Will be included in the <head> of every page
|
// A string of css to include. Will be included in the <head> of every page
|
||||||
// inside a <style> tag. This may also be a url - urls will be referenced via a
|
// inside a <style> tag. This may also be a url - urls will be referenced via a
|
||||||
|
|
Loading…
Reference in a new issue