<?php

/**
 * @file
 * mathsplain_feature.default_environment_indicator_environments.inc
 */

/**
 * Implements hook_default_environment_indicator_environment().
 */
function mathsplain_feature_default_environment_indicator_environment() {
  $export = array();

  $environment = new stdClass();
  $environment->disabled = FALSE; /* Edit this to true to make a default environment disabled initially */
  $environment->api_version = 1;
  $environment->machine = 'dev_en';
  $environment->name = 'dev_en';
  $environment->regexurl = 'dev.mathsplain.com';
  $environment->settings = array(
    'color' => '#0ccc44',
    'fixed' => 0,
    'position' => 'top',
    'text_color' => '#ffffff',
    'weight' => '',
  );
  $export['dev_en'] = $environment;

  $environment = new stdClass();
  $environment->disabled = FALSE; /* Edit this to true to make a default environment disabled initially */
  $environment->api_version = 1;
  $environment->machine = 'dev_hu';
  $environment->name = 'dev_hu';
  $environment->regexurl = 'dev.mateking.hu';
  $environment->settings = array(
    'color' => '#2bcc0c',
    'fixed' => 0,
    'position' => 'top',
    'text_color' => '#ffffff',
    'weight' => '',
  );
  $export['dev_hu'] = $environment;

  $environment = new stdClass();
  $environment->disabled = FALSE; /* Edit this to true to make a default environment disabled initially */
  $environment->api_version = 1;
  $environment->machine = 'test_en';
  $environment->name = 'test_en';
  $environment->regexurl = 'test.mathsplain.com';
  $environment->settings = array(
    'color' => '#dabc08',
    'fixed' => 0,
    'position' => 'top',
    'text_color' => '#ffffff',
    'weight' => '',
  );
  $export['test_en'] = $environment;

  $environment = new stdClass();
  $environment->disabled = FALSE; /* Edit this to true to make a default environment disabled initially */
  $environment->api_version = 1;
  $environment->machine = 'test_hu';
  $environment->name = 'test_hu';
  $environment->regexurl = 'test.mateking.hu';
  $environment->settings = array(
    'color' => '#dabc08',
    'fixed' => 0,
    'position' => 'top',
    'text_color' => '#ffffff',
    'weight' => '',
  );
  $export['test_hu'] = $environment;

  return $export;
}
