mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 20:47:15 +01:00
22 lines
370 B
PHP
22 lines
370 B
PHP
|
<?php
|
||
|
|
||
|
namespace Xentral\Modules\SuperSearch\SearchIndex\Provider;
|
||
|
|
||
|
interface SearchIndexProviderInterface
|
||
|
{
|
||
|
/**
|
||
|
* @return string Nur Kleinbuchstaben erlaubt
|
||
|
*/
|
||
|
public function getIndexName();
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getIndexTitle();
|
||
|
|
||
|
/**
|
||
|
* @return string|null
|
||
|
*/
|
||
|
public function getModuleName();
|
||
|
}
|