You are here

function Config_File::get_file_names in Quiz 6.6

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

Get all loaded config file names.

Return value

array an array of loaded config file names

File

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

Class

Config_File
Config file reading class @package Smarty

Code

function get_file_names() {
  return array_keys($this->_config_data);
}