|
Revision 5, 434 bytes
(checked in by daris, 3 years ago)
|
|
portal: language files review
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | /*********************************************************************** |
|---|
| 3 | |
|---|
| 4 | PunBB extension |
|---|
| 5 | Portal |
|---|
| 6 | Daris <daris91@gmail.com> |
|---|
| 7 | |
|---|
| 8 | ************************************************************************/ |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | // Make sure no one attempts to run this script "directly" |
|---|
| 12 | if (!defined('FORUM')) |
|---|
| 13 | exit; |
|---|
| 14 | |
|---|
| 15 | $cur_panel['title'] = 'Example panel'; // title for panel (if it isn't set, will be used panel name) |
|---|
| 16 | |
|---|
| 17 | echo 'This is an example panel'; |
|---|