<?php
/**
 * @file
 * hw_platform_panels_rules.ctools_content.inc
 */

/**
 * Implements hook_default_ctools_custom_content().
 */
function hw_platform_panels_rules_default_ctools_custom_content() {
  $export = array();

  $content = new stdClass();
  $content->disabled = FALSE; /* Edit this to true to make a default content disabled initially */
  $content->api_version = 1;
  $content->name = 'div_closure';
  $content->admin_title = 'DIV Closure';
  $content->admin_description = '';
  $content->category = 'Markup';
  $content->settings = array(
    'admin_title' => 'DIV Closure',
    'title' => '',
    'body' => '</div>',
    'format' => 'php_code',
    'substitute' => 1,
  );
  $export['div_closure'] = $content;

  $content = new stdClass();
  $content->disabled = FALSE; /* Edit this to true to make a default content disabled initially */
  $content->api_version = 1;
  $content->name = 'white_box_opener';
  $content->admin_title = 'White Box Opener';
  $content->admin_description = '';
  $content->category = 'Markup';
  $content->settings = array(
    'admin_title' => 'White Box Opener',
    'title' => '',
    'body' => '<div class="white-box">',
    'format' => 'php_code',
    'substitute' => 0,
  );
  $export['white_box_opener'] = $content;

  $content = new stdClass();
  $content->disabled = FALSE; /* Edit this to true to make a default content disabled initially */
  $content->api_version = 1;
  $content->name = 'wrapper_end_custom';
  $content->admin_title = 'Wrapper end';
  $content->admin_description = 'Wrapper end';
  $content->category = '';
  $content->settings = array(
    'admin_title' => 'Wrapper end',
    'title' => 'wraper end',
    'body' => '',
    'format' => 'filtered_html',
    'substitute' => 1,
  );
  $export['wrapper_end_custom'] = $content;

  $content = new stdClass();
  $content->disabled = FALSE; /* Edit this to true to make a default content disabled initially */
  $content->api_version = 1;
  $content->name = 'wrapper_start';
  $content->admin_title = 'Wrapper start';
  $content->admin_description = 'Wrapper start';
  $content->category = 'Wrapper start';
  $content->settings = array(
    'admin_title' => 'Wrapper start',
    'title' => '',
    'body' => '',
    'format' => 'filtered_html',
    'substitute' => 1,
  );
  $export['wrapper_start'] = $content;

  return $export;
}
