From df31fed41e6f10218a99ece4a4f47571eea360f5 Mon Sep 17 00:00:00 2001 From: Jerome Jutteau Date: Sun, 13 Dec 2020 20:34:13 +0100 Subject: [PATCH] [TASK] clean install.php functions Move functions to lib/functions.php Signed-off-by: Jerome Jutteau --- install.php | 67 ----------------------------------------------- lib/functions.php | 67 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+), 67 deletions(-) diff --git a/install.php b/install.php index b6b322d..a5e5420 100644 --- a/install.php +++ b/install.php @@ -26,73 +26,6 @@ require(JIRAFEAU_ROOT . 'lib/settings.php'); require(JIRAFEAU_ROOT . 'lib/functions.php'); require(JIRAFEAU_ROOT . 'lib/lang.php'); -function jirafeau_export_cfg($cfg) -{ - $content = ' true, - 'why' => $mkdir_str1 . '
' . - $path . '
' . $solution_str . - '
' . $mkdir_str2); - } - - foreach (array('files', 'links', 'async') as $subdir) { - $subpath = $path.$subdir; - - if (!jirafeau_mkdir($subpath) || !jirafeau_is_writable($subpath)) { - return array('has_error' => true, - 'why' => $mkdir_str1 . '
' . - $subpath . '
' . $solution_str . - '
' . $mkdir_str2); - } - } - - return array('has_error' => false, 'why' => ''); -} - -function jirafeau_add_ending_slash($path) -{ - return $path . ((substr($path, -1) == '/') ? '' : '/'); -} - /** * Check installation **/ diff --git a/lib/functions.php b/lib/functions.php index 3c432b6..b3dc904 100644 --- a/lib/functions.php +++ b/lib/functions.php @@ -1359,3 +1359,70 @@ function jirafeau_dir_size($dir) } return $size; } + +function jirafeau_export_cfg($cfg) +{ + $content = ' true, + 'why' => $mkdir_str1 . '
' . + $path . '
' . $solution_str . + '
' . $mkdir_str2); + } + + foreach (array('files', 'links', 'async') as $subdir) { + $subpath = $path.$subdir; + + if (!jirafeau_mkdir($subpath) || !jirafeau_is_writable($subpath)) { + return array('has_error' => true, + 'why' => $mkdir_str1 . '
' . + $subpath . '
' . $solution_str . + '
' . $mkdir_str2); + } + } + + return array('has_error' => false, 'why' => ''); +} + +function jirafeau_add_ending_slash($path) +{ + return $path . ((substr($path, -1) == '/') ? '' : '/'); +} -- 2.34.1