<?php
/**
 * @file
 * policia_features.context.inc
 */

/**
 * Implements hook_context_default_contexts().
 */
function policia_features_context_default_contexts() {
  $export = array();

  $context = new stdClass();
  $context->disabled = FALSE; /* Edit this to true to make a default context disabled initially */
  $context->api_version = 3;
  $context->name = 'all';
  $context->description = '';
  $context->tag = 'All';
  $context->conditions = array(
    'sitewide' => array(
      'values' => array(
        1 => 1,
      ),
    ),
  );
  $context->reactions = array(
    'block' => array(
      'blocks' => array(
        'search-form' => array(
          'module' => 'search',
          'delta' => 'form',
          'region' => 'header_third',
          'weight' => '-10',
        ),
      ),
    ),
  );
  $context->condition_mode = 0;

  // Translatables
  // Included for use with string extractors like potx.
  t('All');
  $export['all'] = $context;

  $context = new stdClass();
  $context->disabled = FALSE; /* Edit this to true to make a default context disabled initially */
  $context->api_version = 3;
  $context->name = 'home';
  $context->description = '';
  $context->tag = 'Home';
  $context->conditions = array(
    'path' => array(
      'values' => array(
        '<front>' => '<front>',
      ),
    ),
  );
  $context->reactions = array(
    'block' => array(
      'blocks' => array(
        'views-slider_home_principal-block' => array(
          'module' => 'views',
          'delta' => 'slider_home_principal-block',
          'region' => 'content',
          'weight' => '-10',
        ),
        'menu-menu-menu-home' => array(
          'module' => 'menu',
          'delta' => 'menu-menu-home',
          'region' => 'content',
          'weight' => '-9',
        ),
        'bean-emergencias' => array(
          'module' => 'bean',
          'delta' => 'emergencias',
          'region' => 'content',
          'weight' => '-8',
        ),
        'views-nodequeue_1-block' => array(
          'module' => 'views',
          'delta' => 'nodequeue_1-block',
          'region' => 'content',
          'weight' => '-7',
        ),
        'views-nodequeue_1-block_4' => array(
          'module' => 'views',
          'delta' => 'nodequeue_1-block_4',
          'region' => 'content',
          'weight' => '-6',
        ),
        'views-nodequeue_1-block_5' => array(
          'module' => 'views',
          'delta' => 'nodequeue_1-block_5',
          'region' => 'content',
          'weight' => '-5',
        ),
        'views-nodequeue_1-block_1' => array(
          'module' => 'views',
          'delta' => 'nodequeue_1-block_1',
          'region' => 'content',
          'weight' => '-4',
        ),
        'views-nodequeue_1-block_3' => array(
          'module' => 'views',
          'delta' => 'nodequeue_1-block_3',
          'region' => 'content',
          'weight' => '-3',
        ),
        'views-slider_home_inferior-block' => array(
          'module' => 'views',
          'delta' => 'slider_home_inferior-block',
          'region' => 'content',
          'weight' => '-2',
        ),
      ),
    ),
  );
  $context->condition_mode = 0;

  // Translatables
  // Included for use with string extractors like potx.
  t('Home');
  $export['home'] = $context;

  return $export;
}
