<?php

/**
 * This file setups the following:
 *
 * - akismet API key
 *
 * If you provide an API key, Reason's publications module will consult akismet to try to determine 
 * whether comments submitted by anonymous individuals are spam and should be rejected.
 *
 * As of May 29, 2012, keys are free for personal blogs, and enterprise licenses cost $50 per month.
 *
 * http://akismet.com/
 *
 * @todo option to check authenticated comments?
 */
/**
 * Path to our akismet php library.
 */
define('AKISMET_INC', INCLUDE_PATH . 'akismet/');
/**
 * Akismet API Key.
 */
domain_define('AKISMET_API_KEY', '');
<?php

/**
 * Recaptcha plasmature type settings.
 *
 * @package disco
 * @subpackage plasmature
 */
/**
 * This file setups the following:
 *
 * - recaptcha public key
 * - recaptcha private key
 *
 * It provides defaults for the recaptcha plasmature type, and should be setup if you use recaptcha at your domain.
 *
 * The type can also be passed the necessarily public and private keys as arguments.
 */
/**
 * Path to Recaptcha PHP libraries
 */
define('RECAPTCHA_INC', INCLUDE_PATH . 'recaptcha/');
/**
 * Recaptcha private key for the domain.
 */
domain_define('RECAPTCHA_PRIVATE_KEY', '');
/**
 * Recaptcha public key for the domain.
 */
domain_define('RECAPTCHA_PUBLIC_KEY', '');
 * located outside the web root. 
 *
 * The location of the reason_package www folder is /reason_package/www/
 */
domain_define( 'REASON_PACKAGE_HTTP_BASE_PATH','/reason_package/');

/**
 * An optional path to a CSS file that may be used by various reason_package utilities
 */
domain_define( 'UNIVERSAL_CSS_PATH', REASON_PACKAGE_HTTP_BASE_PATH.'css/universal.css'); // Define the path to a CSS file used by various reason_package utilities


/**
 * The host name, (eg www.mysite.com)
 */
domain_define( 'HTTP_HOST_NAME', $_SERVER['HTTP_HOST'] );

/**
 * Make sure that your locale settings use UTF-8.
 *
 * If your server is not set to use utf-8, and you cannot change it at the server level, uncomment
 * the line below and use your appropriate language/country information
 */
//setlocale(LC_ALL, 'en_US.UTF-8');

/**
 * This is deprecated - while carl_get_safer_html($html) respects this currently, it will go away
 * entirely when Reason 4.5 is released.
 */
define('HTML_SANITIZATION_FUNCTION','get_safer_html_html_purifier');
     */
    domain_define('REASON_CONTACT_INFO_FOR_ANALYTICS', '<a href="mailto:ga_expert@yourdomain.edu">Your GA Expert</a>');
    /** 
     * The service provider name for your domain
     *      e.g some college
     * Used to filter on-campus traffic (dimension=ga:networkLocation!='some\ college')
     */
    domain_define('GA_SERVICE_PROVIDER_NAME', '');
    /**
     * The hostname for your Reason CMS server
     * Change to your production server for testing in a development environment
     * e.g. wwww.yourdomain.edu
     *
     * If you are not getting any results from google analytics, try setting this to an empty string.
     */
    domain_define('GA_HOST_NAME', HTTP_HOST_NAME);
}
/**
 * Google Maps Default Settings
 */
/**
 * The Map ID obtained from a dedicated google account containing a campus map
 * For example '203908844213597815590.0004cfa54d955e6e86cbb'
 */
define('GOOGLE_MAPS_CAMPUS_TEMPLATE_ID', '');
/**
 * The default latitude, longitude, and zoom level for new maps.
 * Often an overview of campus.
 * For example: 'GOOGLE_MAPS_DEFAULT_LATITUDE', 39.059325
 * 'GOOGLE_MAPS_DEFAULT_LONGITUDE', -97.045476
 * 'GOOGLE_MAPS_DEFAULT_ZOOM_LEVEL', 4