Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Tenzing
/
Tz Tools
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
3695ef5c
authored
2010-03-18 16:44:42 +0000
by
Chris Boden
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Updated descriptions on settings page for PagePermissions
1 parent
a659717b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
com/PagePermissions/views/settings.php
com/PagePermissions/views/settings.php
View file @
3695ef5
...
...
@@ -10,12 +10,13 @@ Idea: Checkbox beside each textarea with option to include registration forum or
<form
method=
"post"
>
<input
type=
"hidden"
name=
"
<?php
echo
PagePermissionsAdmin
::
SUBMIT_HOOK
;
?>
"
value=
"1"
/>
<h3>
Default
s
</h3>
<h3>
Default
Option
</h3>
<?php
require
(
dirname
(
__FILE__
)
.
DIRECTORY_SEPARATOR
.
'form.php'
);
?>
<hr
/>
<h3>
Messages
</h3>
<h3>
Error Messages
</h3>
<h6>
(Messages are displayed for given criteria when page permission is not met)
</h6>
<p>
<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
</p>
<p>
<label
for=
"
<?php
echo
PagePermissions
::
ELE_CUST_AUTH
;
?>
"
/>
"Only Specific
User
s" message for un-authenticated visitors
</label>
<label
for=
"
<?php
echo
PagePermissions
::
ELE_CUST_AUTH
;
?>
"
/>
"Only Specific
Role
s" message for un-authenticated visitors
</label>
<br
/><textarea
id=
"
<?php
echo
PagePermissions
::
ELE_CUST_AUTH
;
?>
"
name=
"
<?php
echo
PagePermissions
::
ELE_CUST_AUTH
;
?>
"
>
<?php
echo
$selected
[
PagePermissions
::
ELE_CUST_AUTH
];
?>
</textarea>
</p>
<p>
<label
for=
"
<?php
echo
PagePermissions
::
ELE_DENIED
;
?>
"
/>
"Only Specific
User
s" message for authenticated users without sufficient privelages
</label>
<label
for=
"
<?php
echo
PagePermissions
::
ELE_DENIED
;
?>
"
/>
"Only Specific
Role
s" message for authenticated users without sufficient privelages
</label>
<br
/><textarea
id=
"
<?php
echo
PagePermissions
::
ELE_DENIED
;
?>
"
name=
"
<?php
echo
PagePermissions
::
ELE_DENIED
;
?>
"
>
<?php
echo
$selected
[
PagePermissions
::
ELE_DENIED
];
?>
</textarea>
</p>
...
...
Please
register
or
sign in
to post a comment