function _comment_get_modes

Returns an array of viewing modes for comment listings.

We can't use a global variable array because the locale system is not initialized yet when the Comment module is loaded.

File

drupal/core/modules/comment/comment.module, line 1733
Enables users to comment on published content.

Code

function _comment_get_modes() {
  return array(
    COMMENT_MODE_FLAT => t('Flat list'),
    COMMENT_MODE_THREADED => t('Threaded list'),
  );
}