Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Commit

Permalink
Prepare version 10.0.6+1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ddurieux committed Feb 12, 2023
1 parent 69e8e77 commit 82bd5cf
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 17 deletions.
12 changes: 11 additions & 1 deletion css/fusioninventory.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion js/footer.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var fifooter = "<br/> \
<a class='copyright' href='http://fusioninventory.org/'> \
FusionInventory 10.0.3+1.0 - Copyleft \
FusionInventory 10.0.6+1.0 - Copyleft \
<span style='display:inline-block;transform: rotate(180deg);font-size: 12px;'>&copy;</span> \
2010-2019 by FusionInventory Team \
</a>";
Expand Down
Binary file added pics/logo_fusionInventory_header.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 16 additions & 15 deletions setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ function plugin_init_fusioninventory() {

$PLUGIN_HOOKS['csrf_compliant']['fusioninventory'] = true;

echo "<div class='fusioninventorylogo'></div>";

$Plugin = new Plugin();
$moduleId = 0;

Expand Down Expand Up @@ -613,19 +615,18 @@ function plugin_fusioninventory_haveTypeRight($type, $right) {
* @param string $baseroot
*/
function plugin_fusioninventory_footer($baseroot) {

echo "<div id='footer'>";
echo "<table width='100%'>";
echo "<tr>";
echo "<td class='right'>";
echo "<a href='http://fusioninventory.org/'>";
echo "<span class='copyright'>FusionInventory ".PLUGIN_FUSIONINVENTORY_VERSION." | copyleft ".
"<img src='".$baseroot."/".Plugin::getWebDir('fusioninventory', false)."/pics/copyleft.png'/> "
. " 2010-2016 by FusionInventory Team".
"</span>";
echo "</a>";
echo "</td>";
echo "</tr>";
echo "</table>";
echo "</div>";
echo "<div id='footer'>";
echo "<table width='100%'>";
echo "<tr>";
echo "<td class='right'>";
echo "<a href='http://fusioninventory.org/'>";
echo "<span class='copyright'>FusionInventory ".PLUGIN_FUSIONINVENTORY_VERSION." | copyleft ".
"<img src='".$baseroot."/".Plugin::getWebDir('fusioninventory', false)."/pics/copyleft.png'/> "
. " 2010-2016 by FusionInventory Team".
"</span>";
echo "</a>";
echo "</td>";
echo "</tr>";
echo "</table>";
echo "</div>";
}

0 comments on commit 82bd5cf

Please sign in to comment.