|
Revision 78, 422 bytes
(checked in by d0nut, 6 years ago)
|
|
license updates to version 3 of GPL and LGPL
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | // wbb imports |
|---|
| 3 | require_once(WBB_DIR.'lib/data/board/BoardList.class.php'); |
|---|
| 4 | |
|---|
| 5 | /** |
|---|
| 6 | * extends boardlist |
|---|
| 7 | * |
|---|
| 8 | * @author Torben Brodt |
|---|
| 9 | * @package de.easy-coding.wbb.taggingreloaded |
|---|
| 10 | * @license GNU General Public License <http://opensource.org/licenses/gpl-3.0.html> |
|---|
| 11 | */ |
|---|
| 12 | class BoardListTaggingReloaded extends BoardList { |
|---|
| 13 | /** |
|---|
| 14 | * returns subBoards |
|---|
| 15 | */ |
|---|
| 16 | public function getSubBoards() { |
|---|
| 17 | return $this->subBoards; |
|---|
| 18 | } |
|---|
| 19 | } |
|---|
| 20 | ?> |
|---|