nextcloud/lib/migrate/provider.php

28 lines
598 B
PHP
Raw Normal View History

<?php
/**
* provides search functionalty
*/
abstract class OC_Migrate_Provider{
2012-02-04 01:28:58 +04:00
public $appid;
public function __construct($appid){
$this->appid = $appid;
OC_Migrate::registerProvider($this);
}
//public static $appid;
/**
* exports data for apps
* @param string $uid
2012-03-03 21:30:21 +04:00
* @return array appdata to be exported
*/
abstract function export($uid);
/**
* imports data for the app
2012-03-03 21:30:21 +04:00
* @param $data array of data. eg: array('info'=> APPINFO, 'data'=>APPDATA ARRAY)
* @param $info array of info of the source install
* @return void
*/
2012-03-03 21:30:21 +04:00
abstract function import($data,$uid);
}