You are here

function get_display_id_from_name in Mobile Navigation 7.2

1 call to get_display_id_from_name()
mobile_navigation_configuration_form_submit in ./mobile_navigation.admin.inc
Submit function for Displays form.

File

./mobile_navigation.inc, line 35
Mobile Navigation helper functions.

Code

function get_display_id_from_name($name) {
  return db_query("SELECT id FROM {mobile_navigation_displays} WHERE name=:name", array(
    ':name' => $name,
  ))
    ->fetchField();
}