|
Revision 1539, 0.5 kB
(checked in by renato, 1 year ago)
|
Setting prop svn:eol-style in LOTS of files.
|
- Property svn:mime-type set to
text/plain
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
$header = __gettext("Create a new group"); // gettext variable |
|---|
| 3 |
$labelValue = __gettext("Group name:"); // gettext variable |
|---|
| 4 |
$buttonValue = __gettext("Create"); // gettext variable |
|---|
| 5 |
$run_result .= <<< END |
|---|
| 6 |
|
|---|
| 7 |
<h5> |
|---|
| 8 |
$header |
|---|
| 9 |
</h5> |
|---|
| 10 |
<form action="" method="post"> |
|---|
| 11 |
<p> |
|---|
| 12 |
<label> |
|---|
| 13 |
$labelValue |
|---|
| 14 |
<input type="text" name="name" value="" /> |
|---|
| 15 |
</label> |
|---|
| 16 |
<input type="submit" value=$buttonValue /> |
|---|
| 17 |
<input type="hidden" name="action" value="group:create" /> |
|---|
| 18 |
</p> |
|---|
| 19 |
</form> |
|---|
| 20 |
|
|---|
| 21 |
END; |
|---|
| 22 |
|
|---|
| 23 |
?> |
|---|