<?php
/**
 * @author arson
 */
class Main_Core_Module_Module extends Eppe_Module_ModuleAbstract implements Eppe_Module_ModuleInterface {
	//put your code here
	
	public function getDocumentImagesPublicPath() {
		return ROOT_PATH . '/public/' . $this->config->documentImagePublicPath;
	}
	
	public function getPopupImagesPublicPath() {
		return ROOT_PATH . '/public/' . $this->config->popupImagePublicPath;
	}
	
	public function getReferenceImagesPublicPath() {
		return ROOT_PATH . '/public/' . $this->config->referenceImagePublicPath;
	}
	
	public function getPopupImagesUploadPath() {
		return $this->getResourcesPath() . $this->config->popupImageUploadPath;
	}
	
	public function getDocumentImagesUploadPath() {
		return $this->getResourcesPath() . $this->config->documentImageUploadPath;
	}
	
	public function getReferenceImagesUploadPath() {
		return $this->getResourcesPath() . $this->config->eventImageUploadPath;
	}

}