You are here

function book_content_build_modes in Content Construction Kit (CCK) 6.2

Same name and namespace in other branches
  1. 6.3 content.module \book_content_build_modes()

File

./content.module, line 1961
Allows administrators to associate custom fields to content types.

Code

function book_content_build_modes() {
  return array(
    'print' => array(
      'title' => t('Print'),
      'build modes' => array(
        NODE_BUILD_PRINT => array(
          'title' => t('Print'),
          'views style' => TRUE,
        ),
      ),
    ),
  );
}