aboutsummaryrefslogtreecommitdiff
path: root/engine/classes/Exportable.php
blob: 0c1ea528203f2227f7cfa83cd2b7061dcde84861 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
 * Define an interface for all ODD exportable objects.
 *
 * @package    Elgg.Core
 * @subpackage ODD
 */
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()
	 *
	 * @return array
	 */
	public function getExportableValues();
}