You are here

function auto_menutitle_get_setting in Auto Menu Title 6.2

Returns the auto_menutitle setting for the node, if its been custom set for this particular node.

1 call to auto_menutitle_get_setting()
auto_menutitle_form_alter in ./auto_menutitle.module
Implementation of hook_form_alter().

File

./auto_menutitle.module, line 171
Allows the menu title field to be automatically populated with the contents written into the node Title field

Code

function auto_menutitle_get_setting($node) {
  if (isset($node->menu['automenu_state'])) {
    return $node->menu['automenu_state'];
  }
}