diff options
Diffstat (limited to 'engine/classes/Exportable.php')
| -rw-r--r-- | engine/classes/Exportable.php | 40 | 
1 files changed, 20 insertions, 20 deletions
| diff --git a/engine/classes/Exportable.php b/engine/classes/Exportable.php index da5a7cc54..24f9f982a 100644 --- a/engine/classes/Exportable.php +++ b/engine/classes/Exportable.php @@ -1,21 +1,21 @@ -<?php
 -/**
 - * Define an interface for all ODD exportable objects.
 - *
 - * @package Elgg
 - * @subpackage Core
 - * @author Curverider Ltd
 - */
 -interface Exportable {
 -	/**
 -	 * This must take the contents of the object and convert it to exportable ODD
 -	 * @return object or array of objects.
 -	 */
 -	public function export();
 -
 -	/**
 -	 * Return a list of all fields that can be exported.
 -	 * This should be used as the basis for the values returned by export()
 -	 */
 -	public function getExportableValues();
 +<?php +/** + * Define an interface for all ODD exportable objects. + * + * @package Elgg + * @subpackage Core + * @author Curverider Ltd + */ +interface Exportable { +	/** +	 * This must take the contents of the object and convert it to exportable ODD +	 * @return object or array of objects. +	 */ +	public function export(); + +	/** +	 * Return a list of all fields that can be exported. +	 * This should be used as the basis for the values returned by export() +	 */ +	public function getExportableValues();  }
\ No newline at end of file | 
