HEX
Server: Apache
System: Linux dev.epsylon.net 3.10.0-1160.144.1.el7.tuxcare.els2.x86_64 #1 SMP Sun Feb 15 11:22:42 UTC 2026 x86_64
User: nexper (1054)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/nexper/public_html/sites/all/themes/omega/omega/includes/omega.inc
<?php

/**
 * @file
 * Helper functions for the Omega base theme.
 */

/**
 * A wrapper function for theme_get_settings().
 * 
 * @param $name
 *   The name of the setting that you want to retrieve.
 * 
 * @param $theme (optional)
 *   The name (key) of the theme that you want to fetch the
 *   setting for. Defaults to the global variable $theme_key.
 *   
 * @param $default (optional)
 *   The name (key) of the theme that you want to fetch the
 *   setting for. Defaults to NULL.
 *   
 * @see 
 *   theme_get_setting().
 * 
 * @deprecated
 */
function omega_theme_get_setting($name, $default = NULL, $theme = NULL) {
  return alpha_theme_get_setting($name, $default, $theme);
}

/**
 * A helper function for retrieving zone settings.
 * 
 * @param $name
 *   The name of the setting that you want to retrieve.
 * 
 * @param $zone
 *   The zone that you want to fetch the setting for.
 * 
 * @param $theme (optional)
 *   The name (key) of the theme that you want to fetch the
 *   setting for. Defaults to the global variable $theme_key.
 *   
 * @param $default (optional)
 *   The name (key) of the theme that you want to fetch the
 *   setting for. Defaults to NULL.
 *   
 * @see 
 *   alpha_theme_get_setting().
 * 
 * @see
 *   theme_get_setting().
 * 
 * @deprecated
 */
function omega_zone_get_setting($name, $zone, $default = NULL, $theme = NULL) {
  return alpha_zone_get_setting($name, $zone, $default, $theme);
}

/**
 * A helper function for retrieving region settings.
 * 
 * @param $name
 *   The name of the setting that you want to retrieve.
 * 
 * @param $region
 *   The region that you want to fetch the setting for.
 * 
 * @param $theme (optional)
 *   The name (key) of the theme that you want to fetch the
 *   setting for. Defaults to the global variable $theme_key.
 *   
 * @param $default (optional)
 *   The name (key) of the theme that you want to fetch the
 *   setting for. Defaults to NULL.
 *   
 * @see 
 *   alpha_theme_get_setting().
 * 
 * @see
 *   theme_get_setting().
 * 
 * @deprecated
 */
function omega_region_get_setting($name, $region, $default = NULL, $theme = NULL) {
  return alpha_region_get_setting($name, $region, $default, $theme);
}

/**
 * @todo
 * @deprecated
 */
function omega_settings() {
  return alpha_settings();
}