Skip to content

Instantly share code, notes, and snippets.

@josmera01
Created December 2, 2014 16:06
Show Gist options
  • Save josmera01/105ceb7e733192a5f761 to your computer and use it in GitHub Desktop.
Save josmera01/105ceb7e733192a5f761 to your computer and use it in GitHub Desktop.
Insert CSS and JS in block
<?php
$block['content']['#attached'] = array(
'js' => array(
drupal_get_path('module', 'ooyala') . '/custom.js',
drupal_get_path('module', 'nc_emisiones') . '/js/ncustom.js',
),
'css' => array(
drupal_get_path('module', 'nc_emisiones') . '/css/custom.css'
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment