You are here

function search_content_build_modes in Content Construction Kit (CCK) 6.2

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

File

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

Code

function search_content_build_modes() {
  return array(
    'search' => array(
      'title' => t('Search'),
      'build modes' => array(
        NODE_BUILD_SEARCH_INDEX => array(
          'title' => t('Search Index'),
          'views style' => FALSE,
        ),
        NODE_BUILD_SEARCH_RESULT => array(
          'title' => t('Search Result'),
          'views style' => FALSE,
        ),
      ),
    ),
  );
}