You are here

function feature_variables_date_format_types in Brainstorm profile 7

Implements hook_date_format_types().

File

modules/features/feature_variables/feature_variables.features.inc, line 105
feature_variables.features.inc

Code

function feature_variables_date_format_types() {
  $format_types = array();

  // Exported date format type: blog_
  $format_types['blog_'] = 'Blog';

  // Exported date format type: portfolio
  $format_types['portfolio'] = 'Portfolio';
  return $format_types;
}