_rsvp_html_head

Definition

_rsvp_html_head()
rsvp/rsvp.module, line 1693

Description

Provides a link to the CSS stylesheet associated with this module.

Return value

a <style> tag that indicates what file browsers should import

Related topics

Namesort iconDescription
core functions for rsvp.

Code

<?php
function _rsvp_html_head() {
  drupal_add_css(drupal_get_path('module', 'rsvp') .'/rsvp.css');
}
?>