function depricated_message

7.x misc.inc depricated_message($str = "A depricated function has been called.")
6.x misc.inc depricated_message($str = "A depricated function has been called.")
5.x misc.inc depricated_message($str = "A depricated function has been called.")

Displays a depricated message on screen. Useful for tracking down when depricated functions are being used.

9 calls to depricated_message()
AdvisingScreen.php in classes/AdvisingScreen.php
AdvisingScreen::determine_mobile_device in classes/AdvisingScreen.php
This function will attempt to determine automatically if we are on a mobile device. If so, it will set $this->page_is_mobile = TRUE
db.inc in includes/db.inc
This file contains mostly db shortcuts.
fp_render_curved_line in includes/theme.inc
Will draw a string in a pretty curved box. Used for displaying semester titles.
fp_render_square_line in includes/theme.inc
Will draw a string in a pretty square box. Used for displaying semester titles.

... See full list

File

includes/misc.inc, line 2857
This file contains misc functions for FlightPath

Code

function depricated_message($str = "A depricated function has been called.") {
  fpm($str);
  fpm(debug_backtrace());
}