diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-04 18:04:46 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-04 18:04:46 +0000 |
commit | 1b6c3839cbc9a43d24727e41fa2352e94ccb63fc (patch) | |
tree | 1b6617349e3e04ffe80b47812a4eddef09822b15 | |
parent | 27003ea0650f1acd12191a256f0961e8b4c39e4a (diff) | |
download | elgg-1b6c3839cbc9a43d24727e41fa2352e94ccb63fc.tar.gz elgg-1b6c3839cbc9a43d24727e41fa2352e94ccb63fc.tar.bz2 |
Added type and subtype abstract functions to ElggData
git-svn-id: http://code.elgg.org/elgg/trunk@8014 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | engine/classes/ElggData.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engine/classes/ElggData.php b/engine/classes/ElggData.php index 2853a5298..1ea8a19e7 100644 --- a/engine/classes/ElggData.php +++ b/engine/classes/ElggData.php @@ -128,6 +128,10 @@ abstract class ElggData implements * @return bool */ abstract public function save(); + + abstract public function getType(); + + abstract public function getSubtype(); /** * Delete this data. |