buildModPath() creates the path to the module's index app
Parameters: $modDataName - the name of the module to me loaded. Expects: The modules name.
Location: class.sodapop.php
private function buildModPath($modDataName) {
$modulePath = "./modules/mod_" . $modDataName . "/" . $modDataName . ".php";
return $modulePath;
}