<?php
/**
* Implements hook_library().
*/
function mbl_start_page_library() {
$libraries['sol'] = array(
'title' => 'Searchable options list',
'website' => 'https://github.com/pbauerochse/searchable-option-list',
'version' => '1.0',
'js' => array(
libraries_get_path('sol'). '/sol.js' => array(),
),
'css' => array(
libraries_get_path('sol'). '/sol.css' => array(),
),
);
return $libraries;
}