diff options
-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 { /** |