You are here

function pollim_page_title in Poll Improved 7

Menu title callback for showing individual entities

1 string reference to 'pollim_page_title'
PollimUIController::hook_menu in ./pollim.admin.inc
Overrides hook_menu() defaults. Main reason for doing this is that parent class hook_menu() is optimized for entity type administration.

File

./pollim.module, line 321
Module for the Pollim Entity - a starting point to create your own Entity and associated administration interface

Code

function pollim_page_title(Pollim $pollim) {
  return $pollim->name;
}