mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-09 02:54:26 +00:00
64 lines
1.1 KiB
PHP
64 lines
1.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2016 Alchemy
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Alchemy\Phrasea\Databox;
|
|
|
|
interface DataboxRepository
|
|
{
|
|
/**
|
|
* @param int $id
|
|
* @return \databox
|
|
*/
|
|
public function find($id);
|
|
|
|
/**
|
|
* @return \databox[]
|
|
*/
|
|
public function findAll();
|
|
|
|
/**
|
|
* @param \databox $databox
|
|
*/
|
|
public function save(\databox $databox);
|
|
|
|
/**
|
|
* @param \databox $databox
|
|
*/
|
|
public function delete(\databox $databox);
|
|
|
|
/**
|
|
* @param \databox $databox
|
|
*/
|
|
public function unmount(\databox $databox);
|
|
|
|
/**
|
|
* @param $host
|
|
* @param $port
|
|
* @param $user
|
|
* @param $password
|
|
* @param $dbname
|
|
*
|
|
* @return \databox
|
|
*/
|
|
public function mount($host, $port, $user, $password, $dbname);
|
|
|
|
/**
|
|
* @param $host
|
|
* @param $port
|
|
* @param $user
|
|
* @param $password
|
|
* @param $dbname
|
|
*
|
|
* @return \databox
|
|
*/
|
|
public function create($host, $port, $user, $password, $dbname);
|
|
}
|