|
Revision 221, 0.9 kB
(checked in by d0nut, 5 years ago)
|
|
we build a group page
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | require_once(WCF_DIR.'lib/page/AbstractPage.class.php'); |
|---|
| 3 | |
|---|
| 4 | /** |
|---|
| 5 | * Group Page |
|---|
| 6 | * |
|---|
| 7 | * @author Torben Brodt |
|---|
| 8 | * @package de.easy-coding.wcf.buddyloo |
|---|
| 9 | * @license GNU General Public License <http://opensource.org/licenses/gpl-3.0.html> |
|---|
| 10 | */ |
|---|
| 11 | class GroupPage extends AbstractPage { |
|---|
| 12 | public $groupID = 0; |
|---|
| 13 | public $sqlSelects = ''; |
|---|
| 14 | public $sqlJoins = ''; |
|---|
| 15 | public $group; |
|---|
| 16 | public $informationFields = array(); |
|---|
| 17 | public $templateName = 'buddylooGroupProfile'; |
|---|
| 18 | |
|---|
| 19 | /** |
|---|
| 20 | * Creates a new GroupPage object. |
|---|
| 21 | */ |
|---|
| 22 | public function __construct() { |
|---|
| 23 | parent::__construct(); |
|---|
| 24 | } |
|---|
| 25 | |
|---|
| 26 | /** |
|---|
| 27 | * @see Page::readParameters() |
|---|
| 28 | */ |
|---|
| 29 | public function readParameters() { |
|---|
| 30 | parent::readParameters(); |
|---|
| 31 | } |
|---|
| 32 | |
|---|
| 33 | /** |
|---|
| 34 | * @see Page::readData() |
|---|
| 35 | */ |
|---|
| 36 | public function readData() { |
|---|
| 37 | parent::readData(); |
|---|
| 38 | } |
|---|
| 39 | |
|---|
| 40 | /** |
|---|
| 41 | * @see Page::assignVariables() |
|---|
| 42 | */ |
|---|
| 43 | public function assignVariables() { |
|---|
| 44 | parent::assignVariables(); |
|---|
| 45 | } |
|---|
| 46 | |
|---|
| 47 | /** |
|---|
| 48 | * @see Page::show() |
|---|
| 49 | */ |
|---|
| 50 | public function show() { |
|---|
| 51 | parent::show(); |
|---|
| 52 | } |
|---|
| 53 | } |
|---|
| 54 | ?> |
|---|