You are here

function sharemessage_libraries_info in Share Message 8

Implements hook_libraries_info().

File

./sharemessage.module, line 27
New Sharing Module.

Code

function sharemessage_libraries_info() {
  $libraries = [
    'sharrre' => [
      'name' => 'Sharrre',
      'vendor url' => 'http://sharrre.com',
      'download url' => 'http://sharrre.com/#download',
      'version arguments' => [
        'file' => 'jquery.sharrre.min.js',
        'pattern' => '/Version: (.*)/',
        'lines' => 5,
      ],
      'files' => [
        'js' => [
          'jquery.sharrre.min.js' => [],
        ],
      ],
    ],
    'socialshareprivacy' => [
      'name' => 'socialshareprivacy',
      'vendor url' => 'http://panzi.github.io',
      'download url' => 'http://panzi.github.io/SocialSharePrivacy/',
      'version' => 'unknown',
      'files' => [
        'js' => [
          'jquery.socialshareprivacy.min.js' => [],
        ],
        'css' => [
          'stylesheets/jquery.socialshareprivacy.min.css' => [],
        ],
      ],
    ],
  ];
  return $libraries;
}