From 291c7b8bb1a0ad6166f88d79c183973683adf183 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 31 Aug 2006 22:12:15 +0000 Subject: - Patch #81757 by neclimdul: Remove non private copy of module_parse_meta_file. --- includes/module.inc | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'includes') diff --git a/includes/module.inc b/includes/module.inc index 150b776b8..53f4d3e37 100644 --- a/includes/module.inc +++ b/includes/module.inc @@ -134,30 +134,6 @@ function module_rebuild_cache() { return $files; } -/** - * Parse Drupal meta file format. - * Uses ini parser provided by php's parse_ini_file(). - * You should not use the meta files to store module specific settings: - * user variable_get() and variable_set() for those. - * - * Files should use the ini format to specify values: - * key = "value" - * key2 = value2 - * - * @param $filename - * The file we are parsing. Accepts file with relative or absolute path. - * @return - * The meta data array. - */ -function module_parse_meta_file($filename) { - $metadata = array(); - - if (file_exists($filename)) { - $metadata = parse_ini_file($filename); - } - return $metadata; -} - /** * Parse Drupal info file format. * Uses ini parser provided by php's parse_ini_file(). -- cgit v1.2.3