aboutsummaryrefslogtreecommitdiff
path: root/engine/lib
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-01 09:20:17 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-01 09:20:17 +0000
commitc5853b49a6d0096414ec8e0f7696492daabf8f65 (patch)
treefde5f1de7c3a697bf40f871765e238895927807e /engine/lib
parent220cd4c23f5e0a8aa611851bd9595f73fe579052 (diff)
downloadelgg-c5853b49a6d0096414ec8e0f7696492daabf8f65.tar.gz
elgg-c5853b49a6d0096414ec8e0f7696492daabf8f65.tar.bz2
Refs #106: Group prototype class
git-svn-id: https://code.elgg.org/elgg/trunk@1216 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib')
-rw-r--r--engine/lib/group.php44
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