From 99b28cca82eb3753f2a95f1c41f6c58c10a51f7f Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Wed, 19 Sep 2012 11:11:50 -0400 Subject: [PATCH] Removed unused methods --- airtime_mvc/application/models/StoredFile.php | 27 ------------------- 1 file changed, 27 deletions(-) diff --git a/airtime_mvc/application/models/StoredFile.php b/airtime_mvc/application/models/StoredFile.php index deada4d38..c005243db 100644 --- a/airtime_mvc/application/models/StoredFile.php +++ b/airtime_mvc/application/models/StoredFile.php @@ -240,33 +240,6 @@ class Application_Model_StoredFile } } - /** - * Get one metadata value. - * - * @param string $p_category (MDATA_KEY_URL) - * @return string - */ - public function getMetadataValue($p_category) - { - // constant() was used because it gets quoted constant name value from - // api_client.py. This is the wrapper funtion - return $this->getDbColMetadataValue(constant($p_category)); - } - - /** - * Get one metadata value. - * - * @param string $p_category (url) - * @return string - */ - public function getDbColMetadataValue($p_category) - { - $propelColumn = $this->_dbMD[$p_category]; - $method = "get$propelColumn"; - - return $this->_file->$method(); - } - /** * Get metadata as array, indexed by the column names in the database. *