node_get_name

  1. drupal
    1. 4.7
Versions
4.7 node_get_name($node)

Determine the human readable name for a given type.

Parameters

$node Either a node object, a node array, or a string containing the node type.

Return value

The human readable name of the node type.

▾ 10 functions call node_get_name()

node_add in modules/node.module
Present a node submission form or a set of links to such forms.
node_admin_nodes in modules/node.module
Menu callback: content administration.
node_form_submit in modules/node.module
node_menu in modules/node.module
Implementation of hook_menu().
node_preview in modules/node.module
Generate a node preview.
node_search in modules/node.module
Implementation of hook_search().
node_types_configure in modules/node.module
Menu callback; presents each node type configuration page.
node_validate in modules/node.module
Perform validation checks on the given node.
taxonomy_overview_vocabularies in modules/taxonomy.module
List and manage vocabularies.
tracker_page in modules/tracker.module
Menu callback. Prints a listing of active nodes on the site.

Code

modules/node.module, line 269

<?php
function node_get_name($node) {
  return _node_names('name', $node);
}
?>