*/ interface Mage_Media_Model_Image_Config_Interface { /** * Retrive base url for media files * * @return string */ function getBaseMediaUrl(); /** * Retrive base path for media files * * @return string */ function getBaseMediaPath(); /** * Retrive url for media file * * @param string $file * @return string */ function getMediaUrl($file); /** * Retrive file system path for media file * * @param string $file * @return string */ function getMediaPath($file); }