Skip to content

Instantly share code, notes, and snippets.

@reubenmoes
Created April 25, 2016 21:04
Show Gist options
  • Save reubenmoes/9e2b04b12825dc5579bc68646a64a96d to your computer and use it in GitHub Desktop.
Save reubenmoes/9e2b04b12825dc5579bc68646a64a96d to your computer and use it in GitHub Desktop.
Attach JS to a drupal block
<?php
//put this in hook_bock_view
$block['content'] = array(
///....
'#attached' => array(
'css' => array(
drupal_get_path('module', 'mymodule') . '/css/mymodule.css',
),
'js' => array(
drupal_get_path('module', 'mymodule') . '/js/mymodule.js',
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment