diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-31 00:37:23 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-31 00:37:23 +0000 |
commit | b3a1bb6ac48a76a9f3327c1d4606f57918052f7f (patch) | |
tree | a8acd57cfbe5e41b06fe33adf779c5e7f7a6b0f3 /engine | |
parent | 53ea92ac68d3024f42a9b1feb235492c2545de6b (diff) | |
download | elgg-b3a1bb6ac48a76a9f3327c1d4606f57918052f7f.tar.gz elgg-b3a1bb6ac48a76a9f3327c1d4606f57918052f7f.tar.bz2 |
Refs #2597: Moved "implements Exportable" up to {{{ElggData}}}
git-svn-id: http://code.elgg.org/elgg/trunk@7161 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r-- | engine/classes/ElggData.php | 3 | ||||
-rw-r--r-- | engine/classes/ElggEntity.php | 1 | ||||
-rw-r--r-- | engine/classes/ElggExtender.php | 3 | ||||
-rw-r--r-- | engine/classes/ElggRelationship.php | 3 |
4 files changed, 4 insertions, 6 deletions
diff --git a/engine/classes/ElggData.php b/engine/classes/ElggData.php index e465913ef..97c33bbb5 100644 --- a/engine/classes/ElggData.php +++ b/engine/classes/ElggData.php @@ -2,7 +2,8 @@ abstract class ElggData implements Loggable, // Can events related to this object class be logged Iterator, // Override foreach behaviour - ArrayAccess // Override for array access + ArrayAccess, // Override for array access + Exportable { /** diff --git a/engine/classes/ElggEntity.php b/engine/classes/ElggEntity.php index 8ff9f23cc..a21e9a057 100644 --- a/engine/classes/ElggEntity.php +++ b/engine/classes/ElggEntity.php @@ -29,7 +29,6 @@ abstract class ElggEntity extends ElggData implements Notable, // Calendar interface Locatable, // Geocoding interface - Exportable, // Allow export of data Importable // Allow import of data { diff --git a/engine/classes/ElggExtender.php b/engine/classes/ElggExtender.php index 380ba48f5..0379cc492 100644 --- a/engine/classes/ElggExtender.php +++ b/engine/classes/ElggExtender.php @@ -17,8 +17,7 @@ * @see ElggAnnotation * @see ElggMetadata */ -abstract class ElggExtender extends ElggData implements - Exportable +abstract class ElggExtender extends ElggData { protected function initializeAttributes() { parent::initializeAttributes(); diff --git a/engine/classes/ElggRelationship.php b/engine/classes/ElggRelationship.php index c14319d35..376150f9f 100644 --- a/engine/classes/ElggRelationship.php +++ b/engine/classes/ElggRelationship.php @@ -6,8 +6,7 @@ * @subpackage Core */ class ElggRelationship extends ElggData implements - Importable, - Exportable + Importable { /** |