blob: 24f9f982a4284d78e023f5f301ac67cebd0c6439 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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();
}
|