mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-14 20:17:14 +01:00
31 lines
561 B
PHP
31 lines
561 B
PHP
<?php
|
|
|
|
namespace Xentral\Widgets\SuperSearch;
|
|
|
|
final class Bootstrap
|
|
{
|
|
/**
|
|
* @return array
|
|
*/
|
|
public static function registerJavascript()
|
|
{
|
|
return [
|
|
'supersearch' => [
|
|
'./classes/Widgets/SuperSearch/www/js/supersearch.js',
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public static function registerStylesheets()
|
|
{
|
|
return [
|
|
'supersearch' => [
|
|
'./classes/Widgets/SuperSearch/www/css/supersearch.css',
|
|
],
|
|
];
|
|
}
|
|
}
|