You are here

function cck_blocks_content_build_modes in CCK Blocks 6

Implementation of hook_content_build_modes().

File

./cck_blocks.module, line 12

Code

function cck_blocks_content_build_modes() {
  return array(
    'cck_blocks' => array(
      'title' => t('CCK Blocks'),
      'build modes' => array(
        'cck_blocks' => array(
          'title' => t('CCK Blocks'),
          'views style' => FALSE,
        ),
      ),
    ),
  );
}