function acquia_lift_nav_message_is_set in Acquia Lift Connector 7
Checks whether the instructional navigation message is set.
Return value
bool TRUE if the message is set, FALSE otherwise.
3 calls to acquia_lift_nav_message_is_set()
- acquia_lift_build_page in ./acquia_lift.ui.inc 
- Attaches the front-end controls to the page.
- acquia_lift_edit_mode_disable in ./acquia_lift.ui.inc 
- Disables edit mode and returns to the stored destination.
- acquia_lift_init in ./acquia_lift.module 
- Implements hook_init().
File
- ./acquia_lift.ui.inc, line 275 
- acquia_lift.ui.inc Provides functions needed for the front-end UI.
Code
function acquia_lift_nav_message_is_set() {
  return isset($_SESSION['acquia_lift_personalize_set_message']);
}