Updated descriptions on settings page for PagePermissions
Showing
1 changed file
with
5 additions
and
4 deletions
| ... | @@ -10,12 +10,13 @@ Idea: Checkbox beside each textarea with option to include registration forum or | ... | @@ -10,12 +10,13 @@ Idea: Checkbox beside each textarea with option to include registration forum or |
| 10 | <form method="post"> | 10 | <form method="post"> |
| 11 | <input type="hidden" name="<?php echo PagePermissionsAdmin::SUBMIT_HOOK; ?>" value="1" /> | 11 | <input type="hidden" name="<?php echo PagePermissionsAdmin::SUBMIT_HOOK; ?>" value="1" /> |
| 12 | 12 | ||
| 13 | <h3>Defaults</h3> | 13 | <h3>Default Option</h3> |
| 14 | <?php require(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'form.php'); ?> | 14 | <?php require(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'form.php'); ?> |
| 15 | 15 | ||
| 16 | <hr /> | 16 | <hr /> |
| 17 | 17 | ||
| 18 | <h3>Messages</h3> | 18 | <h3>Error Messages</h3> |
| 19 | <h6>(Messages are displayed for given criteria when page permission is not met)</h6> | ||
| 19 | 20 | ||
| 20 | <p> | 21 | <p> |
| 21 | <label for="<?php echo PagePermissions::ELE_AUTH; ?>" />"Must be Logged In" message for un-authenticated visitors</label> | 22 | <label for="<?php echo PagePermissions::ELE_AUTH; ?>" />"Must be Logged In" message for un-authenticated visitors</label> |
| ... | @@ -23,12 +24,12 @@ Idea: Checkbox beside each textarea with option to include registration forum or | ... | @@ -23,12 +24,12 @@ Idea: Checkbox beside each textarea with option to include registration forum or |
| 23 | </p> | 24 | </p> |
| 24 | 25 | ||
| 25 | <p> | 26 | <p> |
| 26 | <label for="<?php echo PagePermissions::ELE_CUST_AUTH; ?>" />"Only Specific Users" message for un-authenticated visitors</label> | 27 | <label for="<?php echo PagePermissions::ELE_CUST_AUTH; ?>" />"Only Specific Roles" message for un-authenticated visitors</label> |
| 27 | <br /><textarea id="<?php echo PagePermissions::ELE_CUST_AUTH; ?>" name="<?php echo PagePermissions::ELE_CUST_AUTH; ?>"><?php echo $selected[PagePermissions::ELE_CUST_AUTH]; ?></textarea> | 28 | <br /><textarea id="<?php echo PagePermissions::ELE_CUST_AUTH; ?>" name="<?php echo PagePermissions::ELE_CUST_AUTH; ?>"><?php echo $selected[PagePermissions::ELE_CUST_AUTH]; ?></textarea> |
| 28 | </p> | 29 | </p> |
| 29 | 30 | ||
| 30 | <p> | 31 | <p> |
| 31 | <label for="<?php echo PagePermissions::ELE_DENIED; ?>" />"Only Specific Users" message for authenticated users without sufficient privelages</label> | 32 | <label for="<?php echo PagePermissions::ELE_DENIED; ?>" />"Only Specific Roles" message for authenticated users without sufficient privelages</label> |
| 32 | <br /><textarea id="<?php echo PagePermissions::ELE_DENIED; ?>" name="<?php echo PagePermissions::ELE_DENIED; ?>"><?php echo $selected[PagePermissions::ELE_DENIED]; ?></textarea> | 33 | <br /><textarea id="<?php echo PagePermissions::ELE_DENIED; ?>" name="<?php echo PagePermissions::ELE_DENIED; ?>"><?php echo $selected[PagePermissions::ELE_DENIED]; ?></textarea> |
| 33 | </p> | 34 | </p> |
| 34 | 35 | ... | ... |
-
Please register or sign in to post a comment