function depricated_message

6.x misc.inc depricated_message($str = "A depricated function has been called.")
4.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.

5 calls to depricated_message()
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
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.
fp_screen_is_mobile in includes/misc.inc
This function will attempt to determine automatically if we are on a mobile device, and should therefor use the mobile theme and layout settings.
z__fp_get_system_settings in includes/db.inc

File

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

Code

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