function message_na in Drupal 4
Return a string with a "not applicable" message.
4 calls to message_na()
- blogapi_blogger_edit_post in modules/
blogapi.module - Blogging API callback. Modifies the specified blog node.
- check_markup in modules/
filter.module - Run all the enabled filters on a piece of text.
- theme_locale_admin_manage_screen in includes/
locale.inc - Theme the locale admin manager form.
- _forum_format in modules/
forum.module - Formats a topic for display
File
- includes/
common.inc, line 562 - Common functions that many Drupal modules will need to reference.
Code
function message_na() {
return t('n/a');
}