blob: b6e17e2e40a06fd408901560721c9867f5eaccf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
<?php
/**
* Elgg Groups.
* Groups contain other entities, or rather act as a placeholder for other entities to mark any given container
* as their container.
*
* @package Elgg
* @subpackage Core
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Marcus Povey
* @copyright Curverider Ltd 2008
* @link http://elgg.org/
*/
/**
* @class ElggGroup Class representing a container for other elgg entities.
* @author Marcus Povey
*/
class ElggGroup extends ElggEntity
{
protected function initialise_attributes()
{
initialise_entity_cache();
}
// add to container
// remove from container
// get contained objects (type, subtype, limit, offset)
// load
//save
}
?>
|