Moving the Features folder again in order to ensure compatibility with the namespaces convention

This commit is contained in:
Gustavo Cruz
2015-02-24 18:14:41 -04:00
parent c7a7736edf
commit 077033adca
78 changed files with 330 additions and 265 deletions

View File

@@ -334,7 +334,7 @@ class WebApplication
}
// adding features extension api classes
$featuresPath = $this->workflowDir .'engine' . DS . 'features';
$featuresPath = $this->workflowDir .'engine' . DS . 'Features';
// $apiDir - contains directory to scan classes and add them to Restler
$featureDirList = glob($featuresPath . "/*", GLOB_ONLYDIR);
foreach ($featureDirList as $directory) {
@@ -430,7 +430,7 @@ class WebApplication
define("PATH_XMLFORM", PATH_CORE . "xmlform" . PATH_SEP);
define("PATH_CONFIG", PATH_CORE . "config" . PATH_SEP);
define("PATH_PLUGINS", PATH_CORE . "plugins" . PATH_SEP);
define("PATH_FEATURES", PATH_CORE . "features" . PATH_SEP);
define("PATH_FEATURES", PATH_CORE . "Features" . PATH_SEP);
define("PATH_HTMLMAIL", PATH_CORE . "html_templates" . PATH_SEP);
define("PATH_TPL", PATH_CORE . "templates" . PATH_SEP);
define("PATH_TEST", PATH_CORE . "test" . PATH_SEP);