You are here

function timeline_bookmark_osmplayer_info in MediaFront 7.2

Implements hook_osmplayer_info

File

modules/timeline_bookmark/timeline_bookmark.module, line 55

Code

function timeline_bookmark_osmplayer_info() {
  $path = drupal_get_path('module', 'timeline_bookmark');
  return array(
    'plugins' => array(
      'timeline_bookmark' => array(
        'title' => 'Timeline Bookmark',
        'description' => 'Allows you to create timeline bookmarks.  NOTE: You must also have Timeline Indicator plugin enabled.',
        'js' => array(
          $path . '/js/timeline_bookmark.js' => array(
            'group' => JS_LIBRARY,
          ),
        ),
        'css' => array(
          $path . '/css/timeline_bookmark.css' => array(
            'group' => CSS_THEME,
          ),
        ),
      ),
      'timeline_resume' => array(
        'title' => 'Timeline Resume',
        'description' => 'Allows you to resume media from where you left off.',
        'js' => array(
          $path . '/js/timeline_resume.js' => array(
            'group' => JS_LIBRARY,
          ),
        ),
      ),
    ),
  );
}