You are here

private function CerUIController::setTitle in Corresponding Entity References 7.3

Sets a static title on a menu item.

1 call to CerUIController::setTitle()
CerUIController::hook_menu in includes/CerUIController.inc
Provides definitions for implementing hook_menu().

File

includes/CerUIController.inc, line 44

Class

CerUIController
Contains the controller class for CER's UI (i.e., preset management pages), used by Entity API.

Code

private function setTitle(array &$item, $title) {
  $item['title'] = $title;
  unset($item['title callback'], $item['title arguments']);
}