]> git.p6c8.net - jirafeau.git/commitdiff
Define new constant JIRAFEAU_WEBSITE with the project's website
authorPatrick Canterino <patrick@patrick-canterino.de>
Mon, 15 Jul 2024 19:18:48 +0000 (21:18 +0200)
committerPatrick Canterino <patrick@patrick-canterino.de>
Mon, 15 Jul 2024 19:18:48 +0000 (21:18 +0200)
Made use of this constant where possible

lib/functions.php
lib/settings.php
lib/template/footer.php
script.php

index b87f6c3b17e8649b71b7a8523f1d004e055383e2..b3a84ac64620961b9acb07e32a59c0034f84bafc 100644 (file)
@@ -879,7 +879,7 @@ function jirafeau_fileperms($path)
 function jirafeau_admin_bug_report($cfg)
 {
     $out = "<fieldset><legend>" . t('REPORTING_AN_ISSUE') . "</legend>";
-    $out .= "If you have a problem related to Jirafeau, please <a href='https://gitlab.com/jirafeau/Jirafeau/-/issues'>open an issue</a>, explain your problem in english and copy-paste the following content:<br/><br/><code>";
+    $out .= "If you have a problem related to Jirafeau, please <a href='" . JIRAFEAU_WEBSITE . "/-/issues'>open an issue</a>, explain your problem in english and copy-paste the following content:<br/><br/><code>";
 
     $out .= "# Jirafeau<br/>";
     $out .= "- version: " . JIRAFEAU_VERSION . "<br/>";
index 22a2a5a570086a2afe14bdd0c8adf249e4cb8399..2cf7d0f4332e4e9bcc3740a4a95222df1ab04f57 100644 (file)
@@ -43,6 +43,8 @@ if ($cfg['debug'] === true) {
 define('JIRAFEAU_PACKAGE', 'Jirafeau');
 define('JIRAFEAU_VERSION', '4.6.0');
 
+define('JIRAFEAU_WEBSITE', 'https://gitlab.com/jirafeau/Jirafeau');
+
 /* Directories. */
 define('VAR_FILES', $cfg['var_root'] . 'files/');
 define('VAR_LINKS', $cfg['var_root'] . 'links/');
index e0856a873a889f17211c8fdcce2764e2c403ddf7..efe238f730b420521a44c05156d0943c2d6bd982 100644 (file)
@@ -3,7 +3,7 @@
         <!-- Project links -->
         <?php
           echo t('MADE_WITH') .
-            ' <a href="https://gitlab.com/jirafeau/Jirafeau" target="_blank" rel="noopener noreferrer">' . t('JI_PROJECT') . '</a>' .
+            ' <a href="' . JIRAFEAU_WEBSITE . '" target="_blank" rel="noopener noreferrer">' . t('JI_PROJECT') . '</a>' .
             ' (<a href="https://www.gnu.org/licenses/agpl.html" target="_blank" rel="noopener noreferrer"><abbr title="GNU Affero General Public License v3">AGPL-3.0</abbr></a>)';
         ?>
         <!-- Installation dependent links -->
index be29f3d015dcbdf65ab50bbbbd6114ff3b0de0ca..f32ab2048396a152cec5ec7028e360668662593f 100644 (file)
@@ -44,7 +44,7 @@ if ($_SERVER['REQUEST_METHOD'] == "GET" && count($_GET) == 0) {
     <div class="info">
     <h2>Scripting interface</h2>
     <p>This interface permits to script your uploads and downloads.</p>
-    <p>See <a href="https://gitlab.com/jirafeau/Jirafeau/blob/master/script.php">source code</a> of this interface to get available calls :)</p>
+    <p>See <a href="<?php echo JIRAFEAU_WEBSITE ?>/blob/master/script.php">source code</a> of this interface to get available calls :)</p>
     <p>You may download a preconfigured <a href="script.php?lang=bash">Bash Script</a> to easily send to and get files from the API via command line.</p>
     </div>
     <br />

patrick-canterino.de