function _AdvisingScreen::add_css

4.x _AdvisingScreen.php _AdvisingScreen::add_css($filename)
5.x _AdvisingScreen.php _AdvisingScreen::add_css($filename)

This function simply adds a reference for additional CSS to be link'd in to the theme. It is used by add-on modules.

The filename needs to be from the reference of the base FlightPath install.

Ex: $screen->add_css("modules/course_search/css/style.css");

Parameters

String $filename:

File

classes/_AdvisingScreen.php, line 352

Class

_AdvisingScreen

Code

function add_css($filename) {

  $this->page_extra_css_files [] = $filename;

}