mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-14 13:33:14 +00:00
22 lines
492 B
PHP
22 lines
492 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\SearchEngine;
|
|
|
|
use Alchemy\Phrasea\Application;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
|
|
interface ConfigurationPanelInterface
|
|
{
|
|
public function get(Application $app, Request $request);
|
|
|
|
public function post(Application $app, Request $request);
|
|
|
|
public function getName();
|
|
|
|
public function getConfiguration();
|
|
|
|
public function saveConfiguration(array $configuration);
|
|
|
|
public function getAvailableDateFields(array $databoxes);
|
|
}
|