formatting
This commit is contained in:
@ -317,7 +317,7 @@ trait Modules
|
|||||||
$file = $response->getBody()->getContents();
|
$file = $response->getBody()->getContents();
|
||||||
|
|
||||||
$path = 'temp-' . md5(mt_rand());
|
$path = 'temp-' . md5(mt_rand());
|
||||||
$temp_path = storage_path('app/temp') . '/' . $path;
|
$temp_path = storage_path('app/temp/' . $path);
|
||||||
|
|
||||||
$file_path = $temp_path . '/upload.zip';
|
$file_path = $temp_path . '/upload.zip';
|
||||||
|
|
||||||
@ -359,7 +359,7 @@ trait Modules
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
$temp_path = storage_path('app/temp') . '/' . $path;
|
$temp_path = storage_path('app/temp/' . $path);
|
||||||
|
|
||||||
$file = $temp_path . '/upload.zip';
|
$file = $temp_path . '/upload.zip';
|
||||||
|
|
||||||
@ -394,18 +394,9 @@ trait Modules
|
|||||||
|
|
||||||
public function installModule($path)
|
public function installModule($path)
|
||||||
{
|
{
|
||||||
if (empty($path)) {
|
$temp_path = storage_path('app/temp/' . $path);
|
||||||
return [
|
|
||||||
'success' => false,
|
|
||||||
'error' => true,
|
|
||||||
'message' => trans('modules.errors.finish', ['module' => '']),
|
|
||||||
'data' => null,
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
$temp_path = storage_path('app/temp') . '/' . $path;
|
if (empty($path) || !is_file($temp_path . '/module.json')) {
|
||||||
|
|
||||||
if (!is_file($temp_path . '/module.json')) {
|
|
||||||
return [
|
return [
|
||||||
'success' => false,
|
'success' => false,
|
||||||
'error' => true,
|
'error' => true,
|
||||||
|
Reference in New Issue
Block a user