* @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2 * @category Stud.IP * @since 4.1 */ interface GlobalSearchFulltext { /** * Enables fulltext (MATCH AGAINST) search by creating the corresponding indices. */ public static function enable(); /** * Disables fulltext (MATCH AGAINST) search by removing the corresponding indices. */ public static function disable(); }