You are here

function _radioactivity_get_config_file_path in Radioactivity 7.2

Get the config file path of R

3 calls to _radioactivity_get_config_file_path()
radioactivity_admin_general_form in ./radioactivity-admin-ui.inc
radioactivity_requirements in ./radioactivity.module
Implements hook_requirements().
_radioactivity_light_initialization in ./radioactivity-bootstrap.inc
Do a light system initialization

File

./radioactivity-bootstrap.inc, line 32

Code

function _radioactivity_get_config_file_path() {
  $dir = dirname(__FILE__);
  $config_file = $dir . "/radioactivity-bootstrap.cfg.inc";
  return $config_file;
}