Created
October 1, 2012 05:13
-
-
Save asanchez75/3809570 to your computer and use it in GitHub Desktop.
Drupal snippets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
URI | |
file_create_url($uri) | |
MAP HTML TAG | |
function bcrp_html_map_code($mapname, $shape, $coords, $href, $alt, $title) { | |
$area = theme('html_tag', array( | |
'element' => array( | |
'#tag' => 'area', | |
'#attributes' => array( | |
'shape' => $shape, | |
'coords' => $coords, | |
'href' => $href, | |
'alt' => $alt, | |
'title' => $title, | |
), | |
), | |
)); | |
return theme('html_tag', array( | |
'element' => array( | |
'#tag' => 'map', | |
'#value' => $area, | |
'#attributes' => array( | |
'name' => $mapname, | |
) | |
) | |
)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment