You are here

function Config_File::Config_File in Quiz 6.6

Same name and namespace in other branches
  1. 6.5 includes/moodle/lib/smarty/Config_File.class.php \Config_File::Config_File()

Constructs a new config file class.

Parameters

string $config_path (optional) path to the config files:

File

includes/moodle/lib/smarty/Config_File.class.php, line 71

Class

Config_File
Config file reading class @package Smarty

Code

function Config_File($config_path = NULL) {
  if (isset($config_path)) {
    $this
      ->set_path($config_path);
  }
}