]> git.p6c8.net - jirafeau_project.git/commitdiff
[FEATURE] Enable a custom website title
authorDan Untenzu <untenzu@webit.de>
Tue, 17 Jan 2017 14:13:13 +0000 (15:13 +0100)
committerJerome Jutteau <j.jutteau@gmail.com>
Thu, 19 Jan 2017 19:03:03 +0000 (19:03 +0000)
Enable the administrator to set a custom title
for his installation of Jirafeau, eg. "John Doe Filecenter".

lib/config.original.php
lib/template/header.php

index cd39bb38ed41aded097993e0dca0f6b453e55f85..2cc93e784e8634a8d4a2a1b9d5ec1a1ed3614774 100644 (file)
@@ -51,6 +51,10 @@ $cfg['organisation'] = 'ACME';
  */
 $cfg['contactperson'] = '';
 
  */
 $cfg['contactperson'] = '';
 
+/* Give the installation a title, eg. 'Datahub' or 'John Doe Filehost'
+ */
+$cfg['title'] = '';
+
 /* Propose a preview link if file type is previewable
  */
 $cfg['preview'] = true;
 /* Propose a preview link if file type is previewable
  */
 $cfg['preview'] = true;
index 5a365b90a6dafaa59ddd8d5408b3e532ebc9fdb0..59d145d1276718556a4df74ab5e2d7f0e46b9421 100644 (file)
@@ -46,11 +46,16 @@ else
 }
 ?>
 <head>
 }
 ?>
 <head>
-  <title><?php echo t('Jirafeau, your web file repository'); ?></title>
+  <title><?php echo (true === empty($cfg['title']))? t('Jirafeau, your web file repository') : $cfg['title']; ?></title>
   <meta http-equiv="Content-Type" content="<?php echo $content_type; ?>" />
   <link href="<?php echo $web_root . 'media/' . $style . '/style.css.php'; ?>" rel="stylesheet" type="text/css" />
 </head>
 <body>
 <script type="text/javascript" language="Javascript" src="lib/functions.js.php"></script>
   <meta http-equiv="Content-Type" content="<?php echo $content_type; ?>" />
   <link href="<?php echo $web_root . 'media/' . $style . '/style.css.php'; ?>" rel="stylesheet" type="text/css" />
 </head>
 <body>
 <script type="text/javascript" language="Javascript" src="lib/functions.js.php"></script>
+
 <div id="content">
 <div id="content">
-<h1><a href="<?php echo $web_root; ?>"><?php echo t('Jirafeau, your web file repository'); ?></a></h1>
+  <h1>
+    <a href="<?php echo $web_root; ?>">
+      <?php echo (true === empty($cfg['title']))? t('Jirafeau, your web file repository') : $cfg['title']; ?>
+    </a>
+  </h1>

patrick-canterino.de