You are here

function token_content_build_modes in Content Construction Kit (CCK) 6.2

Same name and namespace in other branches
  1. 6.3 includes/content.token.inc \token_content_build_modes()

@file Implementation of hook_content_build_modes (on behalf of token.module)

File

includes/content.token.inc, line 8
Implementation of hook_content_build_modes (on behalf of token.module)

Code

function token_content_build_modes() {
  return array(
    'token' => array(
      'title' => t('Token'),
      'build modes' => array(
        'token' => array(
          'title' => t('Token'),
          'views style' => FALSE,
        ),
      ),
    ),
  );
}