<?php
/**
 * @file
 * policia_features.bean.inc
 */

/**
 * Implements hook_bean_admin_ui_types().
 */
function policia_features_bean_admin_ui_types() {
  $export = array();

  $bean_type = new stdClass();
  $bean_type->disabled = FALSE; /* Edit this to true to make a default bean_type disabled initially */
  $bean_type->api_version = 5;
  $bean_type->name = 'custom_block';
  $bean_type->label = 'Custom block';
  $bean_type->options = '';
  $bean_type->description = '';
  $export['custom_block'] = $bean_type;

  $bean_type = new stdClass();
  $bean_type->disabled = FALSE; /* Edit this to true to make a default bean_type disabled initially */
  $bean_type->api_version = 5;
  $bean_type->name = 'slider_home_principal';
  $bean_type->label = 'Slider Home Principal';
  $bean_type->options = '';
  $bean_type->description = '';
  $export['slider_home_principal'] = $bean_type;

  $bean_type = new stdClass();
  $bean_type->disabled = FALSE; /* Edit this to true to make a default bean_type disabled initially */
  $bean_type->api_version = 5;
  $bean_type->name = 'slider_inferior_home';
  $bean_type->label = 'Slider inferior home';
  $bean_type->options = '';
  $bean_type->description = '';
  $export['slider_inferior_home'] = $bean_type;

  return $export;
}
