diff options
Diffstat (limited to 'engine/lib')
-rw-r--r-- | engine/lib/group.php | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/engine/lib/group.php b/engine/lib/group.php new file mode 100644 index 000000000..b6e17e2e4 --- /dev/null +++ b/engine/lib/group.php @@ -0,0 +1,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 + } +?>
\ No newline at end of file |