Compare commits

..

No commits in common. "8eae9773572e21e5783c2cebbe7d9ad863dacbe6" and "5ec081022d3f9f236853d7f76214b0126757fde2" have entirely different histories.

4 changed files with 7 additions and 12 deletions

View File

@ -1,6 +1,6 @@
{
"name": "Tags",
"version": "0.2",
"version": "0.1",
"author": "ITGuild",
"slug": "tag",
"description": "Tags module",

View File

@ -82,11 +82,11 @@ class Files
if(is_dir($include)) {
if ($include->getFilename() === 'app_modules') continue;
$tmpFolder = $folder . '/' . $include->getFilename();
$tmpFolder = $folder . '/' . $include->getFilename() . '/';
$this->recursiveAddFile($zip, $include, $tmpFolder);
}
if (is_file($include)) {
$zip->addFile($include->getPathName(), $folder . "/" . $include->getFilename());
$zip->addFile($include->getPathName(), $folder . $include->getFilename());
}
}
}

View File

@ -1,6 +1,6 @@
{
"name": "Post",
"version": "0.2",
"version": "0.1",
"author": "ITGuild",
"slug": "post",
"description": "Post module",

View File

@ -342,20 +342,15 @@ class ModuleService
$tmpModuleDirFull = RESOURCES_DIR . '/tmp/ad/' . $moduleName . "/";
$fileHelper = new Files();
$fileHelper->copy_folder(ROOT_DIR . $path, $tmpModuleDirFull . 'app/');
if (file_exists(KERNEL_APP_MODULES_DIR . '/' . $moduleName)){
$fileHelper->copy_folder(KERNEL_APP_MODULES_DIR . '/' . $moduleName, $tmpModuleDirFull . 'kernel/');
}
else {
mkdir($tmpModuleDirFull . 'kernel/');
}
$fileHelper->copy_folder(APP_DIR . '/modules/' . $moduleName, $tmpModuleDirFull . 'app/');
$fileHelper->copy_folder(KERNEL_APP_MODULES_DIR . '/' . $moduleName, $tmpModuleDirFull . 'kernel/');
if (!is_dir(RESOURCES_DIR . '/tmp/modules')) {
mkdir(RESOURCES_DIR . '/tmp/modules', 0777, true);
}
$fileHelper->pack($tmpModuleDirFull, RESOURCES_DIR . '/tmp/modules/' . $moduleName . '.igm');
//$fileHelper->recursiveRemoveDir($tmpModuleDirFull);
$fileHelper->recursiveRemoveDir($tmpModuleDirFull);
}
/**