Skip to content

Commit

Permalink
OpenXE rebranding
Browse files Browse the repository at this point in the history
  • Loading branch information
Xenomporio committed Oct 14, 2022
1 parent 9d6b86b commit 1ce413a
Show file tree
Hide file tree
Showing 32 changed files with 292 additions and 463 deletions.
8 changes: 4 additions & 4 deletions INSTALL.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
# Xenomporio installation
# OpenXE installation

## Place the installation files into a folder in /var/www/html/.

`cd /var/www/html`

e.g. Release 1.0:

`sudo wget https://github.com/xenomporio-org/Xenomporio/archive/refs/tags/V.1.0.zip`
`sudo wget https://github.com/openxe-org/OpenXE/archive/refs/tags/V.1.0.zip`

`unzip V.1.0.zip`

## Set folder permissions:

`sudo chown www-data:www-data Xenomporio-V.1.0 -R`
`sudo chown www-data:www-data OpenXE-V.1.0 -R`

## Fire up the setup page in a browser

http://yourserverip/Xenomporio-V.1.0 (watch out, its case sensitive)
http://yourserverip/OpenXE-V.1.0 (watch out, its case sensitive)

<img src="doc/Install-10.png" width="800px">
<img src="doc/Install-20.png" width="800px">
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# OpenXE - The free ERP

![Xenomporio overview](https://github.com/xenomporio-org/Xenomporio/blob/master/www/themes/new/images/login_screen_picture.jpg "Xenomporio")
![OpenXE overview](https://github.com/openxe-org/OpenXE/blob/master/www/themes/new/images/login_screen_picture.jpg "OpenXE")

OpenXE ist eine umfassende webbasierte Anwendung zur Abwicklung aller kaufmännischen Prozesse. Zu den Funktionen gehören unter Anderem:

Expand All @@ -23,7 +23,7 @@ Wir freuen uns über Eure Teilnahme, egal ob als stiller Mitleser oder aktiver U

# Letzte Änderungen: Ticket System

Neu in [V.1.3](https://github.com/xenomporio-org/Xenomporio/releases/tag/V.1.3):
Neu in [V.1.3](https://github.com/openxe-org/OpenXE/releases/tag/V.1.3):
Neuimplementierung des Xentral 20 Enterprise Ticketsystems mit vielen Verbesserungen, z.B.:
- Anhänge werden auch bei ausgehenden Nachrichten gespeichert
- Verbesserte Kommentarfunktion
Expand Down
14 changes: 7 additions & 7 deletions SERVER_INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ installation should now be secure.
Thanks for using MariaDB!
```
## Create database for xenomporio
## Create database for openxe
`mysql -u root -p`

```
Expand All @@ -141,13 +141,13 @@ Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]> CREATE DATABASE xenomporio;
MariaDB [(none)]> CREATE DATABASE openxe;
Query OK, 1 row affected (0.001 sec)
MariaDB [(none)]> CREATE USER 'xenomporio'@'localhost' IDENTIFIED BY 'enteryourpasswordhere';
MariaDB [(none)]> CREATE USER 'openxe'@'localhost' IDENTIFIED BY 'enteryourpasswordhere';
Query OK, 0 rows affected (0.015 sec)
MariaDB [(none)]> GRANT ALL PRIVILEGES ON xenomporio.* TO 'xenomporio'@'localhost' WITH GRANT OPTION;
MariaDB [(none)]> GRANT ALL PRIVILEGES ON openxe.* TO 'openxe'@'localhost' WITH GRANT OPTION;
Query OK, 0 rows affected (0.012 sec)
MariaDB [(none)]> FLUSH PRIVILEGES;
Expand All @@ -159,7 +159,7 @@ Bye
```

You can test your database like this:
`mysql -u xenomporio -p`
`mysql -u openxe -p`

```
Enter password:
Expand All @@ -176,7 +176,7 @@ MariaDB [(none)]> show databases;
| Database |
+--------------------+
| information_schema |
| xenomporio |
| openxe |
+--------------------+
2 rows in set (0.001 sec)
Expand All @@ -185,4 +185,4 @@ Bye
```
## --> Reset your server

Continue with [Xenomporio Installation](INSTALL.md)
Continue with [OpenXE Installation](INSTALL.md)
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function __construct($callable, $shared = true)
if (!is_callable($callable, false)) {
/*
xenomporio
OpenXE-todo
unknown compatibility issue
commented out as hotfix
Expand Down
2 changes: 1 addition & 1 deletion classes/Core/ErrorHandler/ErrorPageData.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ final class ErrorPageData implements JsonSerializable
public function __construct($exception, $title = null)
{
$this->exception = $exception;
$this->title = !empty($title) ? (string)$title : 'Xenomporio: Es ist ein unerwarteter Fehler aufgetreten!';
$this->title = !empty($title) ? (string)$title : 'OpenXE: Es ist ein unerwarteter Fehler aufgetreten!';

}

Expand Down
2 changes: 1 addition & 1 deletion cronjobs/chat.php
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ function GetHtmlMessage($receipientName, $messageTotalCount, $messages = [])
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>[Xenomporio] Ungelesene Chat-Nachrichten</title>
<title>[OpenXE] Ungelesene Chat-Nachrichten</title>
<style type="text/css">
body { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; width: 100%; max-width: 100%; font-size: 17px; line-height: 24px; color: #48494B; background: #F5F5F5; }
h1, h2, h3, h4 { color: #42B8C4; margin-bottom: 12px; line-height: 26px; }
Expand Down
2 changes: 1 addition & 1 deletion cronjobs/githash.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
/* Copyright (c) 2022 Xenomporio project */
/* Copyright (c) 2022 OpenXE-org */
/*
Refresh the githash number in githash.txt
*/
Expand Down
2 changes: 1 addition & 1 deletion database/struktur.sql
Original file line number Diff line number Diff line change
Expand Up @@ -18168,7 +18168,7 @@ INSERT INTO `wiedervorlage_stages` (`id`, `kurzbezeichnung`, `name`, `hexcolor`,
(12, 'Stay', 'Stay (Erhalt)', '#A2D624', 0, 1, 4, 4, NULL),
(13, 'Okay', 'Okay (Befürwortung)', '#A2D624', 0, 1, 5, 4, NULL);
INSERT INTO `wiki` (`id`, `name`, `content`, `lastcontent`) VALUES
(1, 'StartseiteWiki', '\n<p>Herzlich Willkommen in Ihrem Xenomporio, dem freien ERP.<br><br>Wir freuen uns Sie als Benutzer begrüßen zu dürfen. Mit Xenomporio organisieren Sie Ihre Firma schnell und einfach. Sie haben alle wichtigen Zahlen und Vorgänge im Überblick.<br><br>Für Einsteiger sind die folgenden Themen wichtig:<br><br></p>\n<ul>\n<li> <a href="index.php?module=firmendaten&amp;action=edit" target="_blank"> Firmendaten</a> (dort richten Sie Ihr Briefpapier ein)</li>\n<li> <a href="index.php?module=adresse&amp;action=list" target="_blank"> Stammdaten / Adressen</a> (Kunden und Lieferanten anlegen)</li>\n<li> <a href="index.php?module=artikel&amp;action=list" target="_blank"> Artikel anlegen</a> (Ihr Artikelstamm)</li>\n<li> <a href="index.php?module=angebot&amp;action=list" target="_blank"> Angebot</a> / <a href="index.php?module=auftrag&amp;action=list" target="_blank"> Auftrag</a> (Alle Dokumente für Ihr Geschäft)</li>\n<li> <a href="index.php?module=rechnung&amp;action=list" target="_blank"> Rechnung</a> / <a href="index.php?module=gutschrift&amp;action=list" target="_blank"> Gutschrift</a></li>\n<li> <a href="index.php?module=lieferschein&amp;action=list" target="_blank"> Lieferschein</a></li>\n</ul>\n<p><br><br>Kennen Sie unsere Zusatzmodule die Struktur und Organisation in das tägliche Geschäft bringen?<br><br></p>\n<ul>\n<li> <a href="index.php?module=kalender&amp;action=list" target="_blank"> Kalender</a></li>\n<li> <a href="index.php?module=wiki&amp;action=list" target="_blank"> Wiki</a></li>\n</ul>', NULL);
(1, 'StartseiteWiki', '\n<p>Herzlich Willkommen in Ihrem OpenXE, dem freien ERP.<br><br>Wir freuen uns Sie als Benutzer begrüßen zu dürfen. Mit OpenXE organisieren Sie Ihre Firma schnell und einfach. Sie haben alle wichtigen Zahlen und Vorgänge im Überblick.<br><br>Für Einsteiger sind die folgenden Themen wichtig:<br><br></p>\n<ul>\n<li> <a href="index.php?module=firmendaten&amp;action=edit" target="_blank"> Firmendaten</a> (dort richten Sie Ihr Briefpapier ein)</li>\n<li> <a href="index.php?module=adresse&amp;action=list" target="_blank"> Stammdaten / Adressen</a> (Kunden und Lieferanten anlegen)</li>\n<li> <a href="index.php?module=artikel&amp;action=list" target="_blank"> Artikel anlegen</a> (Ihr Artikelstamm)</li>\n<li> <a href="index.php?module=angebot&amp;action=list" target="_blank"> Angebot</a> / <a href="index.php?module=auftrag&amp;action=list" target="_blank"> Auftrag</a> (Alle Dokumente für Ihr Geschäft)</li>\n<li> <a href="index.php?module=rechnung&amp;action=list" target="_blank"> Rechnung</a> / <a href="index.php?module=gutschrift&amp;action=list" target="_blank"> Gutschrift</a></li>\n<li> <a href="index.php?module=lieferschein&amp;action=list" target="_blank"> Lieferschein</a></li>\n</ul>\n<p><br><br>Kennen Sie unsere Zusatzmodule die Struktur und Organisation in das tägliche Geschäft bringen?<br><br></p>\n<ul>\n<li> <a href="index.php?module=kalender&amp;action=list" target="_blank"> Kalender</a></li>\n<li> <a href="index.php?module=wiki&amp;action=list" target="_blank"> Wiki</a></li>\n</ul>', NULL);


INSERT INTO `konten` (`id`, `bezeichnung`, `kurzbezeichnung`, `type`, `erstezeile`, `datevkonto`, `blz`, `konto`, `swift`, `iban`, `lastschrift`, `hbci`, `hbcikennung`, `inhaber`, `aktiv`, `keineemail`, `firma`, `schreibbar`, `importletztenzeilenignorieren`, `liveimport`, `liveimport_passwort`, `liveimport_online`, `importtrennzeichen`, `codierung`, `importerstezeilenummer`, `importdatenmaskierung`, `importnullbytes`, `glaeubiger`, `geloescht`, `projekt`, `saldo_summieren`, `saldo_betrag`, `saldo_datum`, `importfelddatum`, `importfelddatumformat`, `importfelddatumformatausgabe`, `importfeldbetrag`, `importfeldbetragformat`, `importfeldbuchungstext`, `importfeldbuchungstextformat`, `importfeldwaehrung`, `importfeldwaehrungformat`, `importfeldhabensollkennung`, `importfeldkennunghaben`, `importfeldkennungsoll`, `importextrahabensoll`, `importfeldhaben`, `importfeldsoll`, `cronjobaktiv`, `cronjobverbuchen`) VALUES
Expand Down
12 changes: 6 additions & 6 deletions tools/module_creator/module_creator.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Create module for listing and editing based on SQL table
* Create template files accordingly
*
* Copyright (c) 2022 Xenomporio project
* Copyright (c) 2022 OpenXE project
*
* Placeholders:
* PLACEHOLDER_MODULENAME
Expand All @@ -21,9 +21,9 @@
*/

$host = 'localhost';
$user = 'xenomporiodev';
$passwd = 'xenomporiodev';
$schema = 'xenomporiodev';
$user = 'openxedev';
$passwd = 'openxedev';
$schema = 'openxedev';

if ($argc >= 2) {

Expand Down Expand Up @@ -214,8 +214,8 @@
}

function info() {
echo("\nXenomporio module creator\n");
echo("Copyright 2022 (c) Xenomporio project\n\n");
echo("\nOpenXE module creator\n");
echo("Copyright 2022 (c) OpenXE project\n\n");
echo("Create a module.php file, a template for listing and a template for editing, based on a SQL table\n");
echo("\n");
echo("arg1: SQL table name\n");
Expand Down
2 changes: 1 addition & 1 deletion tools/module_creator/module_creator_php_template.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* Copyright (c) 2022 Xenomporio project
* Copyright (c) 2022 OpenXE project
*/

use Xentral\Components\Database\Exception\QueryFailureException;
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

$version="OSS";
$version_revision="1.3.1";
$version_revision="1.5";
$githash = file_get_contents("../githash.txt");
if (!empty($githash)) {
$version_revision .= " (".substr($githash,0,8).")";
Expand Down
10 changes: 6 additions & 4 deletions www/eproosystem.php
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ public function createSidebarNavigation(){

$version = '';
if(isset($version_revision) && $version_revision != '') {
$version .= '<div class="sidebar-software-version">Xenomporio V.'. $version_revision .'</div>';
$version .= '<div class="sidebar-software-version">OpenXE V.'. $version_revision .'</div>';
}

if($userId = $this->User->GetID()){
Expand Down Expand Up @@ -618,7 +618,9 @@ public function createSidebarNavigation(){
);
}
else{
$this->Tpl->Add('SIDEBARLOGO', @file_get_contents(__DIR__ . '/themes/new/templates/sidebar_logo.svg'));
// $this->Tpl->Add('SIDEBARLOGO', @file_get_contents(__DIR__ . '/themes/new/templates/sidebar_logo.svg'));
$this->Tpl->Add('SIDEBARLOGO','<div class="sidebar_logo">'.@file_get_contents(__DIR__ . '/themes/new/templates/sidebar_logo.svg').'</div>');
$this->Tpl->Add('SIDEBARLOGO','<div class="sidebar_icon_logo">'.@file_get_contents(__DIR__ . '/themes/new/templates/sidebar_icon_logo.svg').'</div>');
}

$this->Tpl->Parse('SIDEBAR', 'sidebar.tpl');
Expand Down Expand Up @@ -1128,7 +1130,7 @@ public function calledWhenAuth($type)

$this->Tpl->SetText('MODUL',ucfirst($module));

$this->Tpl->Set('HTMLTITLE','{|[MODUL]|} | Xenomporio ');
$this->Tpl->Set('HTMLTITLE','{|[MODUL]|} | OpenXE ');


switch($module)
Expand Down Expand Up @@ -1280,7 +1282,7 @@ public function calledWhenAuth($type)
$this->Tpl->Set('TPLLOGOFIRMA', './themes/new/images/logo_cache.png');
}elseif($this->erp->Firmendaten('firmenlogoaktiv')!='1')
{
$this->Tpl->Set('TPLLOGOFIRMA', './themes/new/images/xentral_logo.svg');
$this->Tpl->Set('TPLLOGOFIRMA', './themes/new/images/openxe_logo.svg');
}else{
$this->Tpl->Set('TPLLOGOFIRMA', './index.php?module=welcome&action=logo');
}
Expand Down
4 changes: 2 additions & 2 deletions www/pages/emailbackup.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* Copyright (c) 2022 Xenomporio project
* Copyright (c) 2022 OpenXE project
*/

use Xentral\Components\Database\Exception\QueryFailureException;
Expand Down Expand Up @@ -284,7 +284,7 @@ function emailbackup_test_smtp() {
$result[0]['angezeigtername'],
$result[0]['email'],
$result[0]['angezeigtername'],
'Xenomporio ERP: Testmail',
'OpenXE ERP: Testmail',
'Dies ist eine Testmail für Account "'.$result[0]['email'].'".',
'',0,false,'','',
true
Expand Down
2 changes: 1 addition & 1 deletion www/pages/firmendaten.php
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ public function FirmendatenTestmail()
$this->app->erp->Firmendaten('absendername'),
$this->app->erp->Firmendaten('testmailempfaenger'),
$this->app->erp->Firmendaten('testmailempfaenger'),
'Xenomporio ERP: Testmail',
'OpenXE ERP: Testmail',
'Dies ist eine Testmail',
'',0,true,'','',
true
Expand Down
8 changes: 4 additions & 4 deletions www/pages/kalender.php
Original file line number Diff line number Diff line change
Expand Up @@ -1353,7 +1353,7 @@ public function KalenderMailNew($event,$betreff='',$text='',$recipients)

$ical = "BEGIN:VCALENDAR\r\n";
$ical .= "VERSION:2.0\r\n";
$ical .= "PRODID:-//Xenomporio//Termin//DE\r\n";
$ical .= "PRODID:-//OpenXE//Termin//DE\r\n";
$ical .= "METHOD:REQUEST\r\n";
$ical .= "BEGIN:VEVENT\r\n";

Expand All @@ -1376,7 +1376,7 @@ public function KalenderMailNew($event,$betreff='',$text='',$recipients)
}
}

$ical .= "UID:".strtoupper(md5($event_id))."-xenomporio\r\n";
$ical .= "UID:".strtoupper(md5($event_id))."-openxe\r\n";
$ical .= "SEQUENCE:".$sequence."\r\n";
$ical .= "STATUS:".$status."\r\n";
$ical .= "DTSTAMPTZID=Europe/Berlin:".date('Ymd').'T'.date('His')."\r\n";
Expand Down Expand Up @@ -1513,12 +1513,12 @@ public function KalenderMail($event,$betreff='',$text='',$emailcc='')

$ical = "BEGIN:VCALENDAR\r\n";
$ical .= "VERSION:2.0\r\n";
$ical .= "PRODID:-//Xenomporio//Termin//DE\r\n";
$ical .= "PRODID:-//OpenXE//Termin//DE\r\n";
$ical .= "METHOD:REQUEST\r\n";
$ical .= "BEGIN:VEVENT\r\n";
$ical .= "ORGANIZER;SENT-BY=\"MAILTO:$initiator_to\"\r\n";
$ical .= "ATTENDEE;CN=$to;ROLE=REQ-PARTICIPANT;PARTSTAT=ACCEPTED;RSVP=TRUE:mailto:$initiator_to\r\n";
$ical .= "UID:".strtoupper(md5($event_id))."-xenomporio\r\n";
$ical .= "UID:".strtoupper(md5($event_id))."-openxe\r\n";
$ical .= "SEQUENCE:".$sequence."\r\n";
$ical .= "STATUS:".$status."\r\n";
$ical .= "DTSTAMPTZID=Europe/Berlin:".date('Ymd').'T'.date('His')."\r\n";
Expand Down
2 changes: 1 addition & 1 deletion www/pages/ticket.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* Copyright (c) 2022 Xenomporio project
* Copyright (c) 2022 OpenXE project
*/

use Xentral\Components\Database\Exception\QueryFailureException;
Expand Down
2 changes: 1 addition & 1 deletion www/pages/ticketregeln.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* Copyright (c) 2022 Xenomporio project
* Copyright (c) 2022 OpenXE project
*/

use Xentral\Components\Database\Exception\QueryFailureException;
Expand Down
2 changes: 1 addition & 1 deletion www/pages/uservorlage.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*
**** END OF COPYRIGHT & LICENSE NOTICE *** DO NOT REMOVE ****
Copyright (c) 2022 Xenomporio project
Copyright (c) 2022 OpenXE project
*/
?>
Expand Down
2 changes: 1 addition & 1 deletion www/pages/warteschlangen.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* Copyright (c) 2022 Xenomporio project
* Copyright (c) 2022 OpenXE project
*/

use Xentral\Components\Database\Exception\QueryFailureException;
Expand Down
2 changes: 1 addition & 1 deletion www/pages/welcome.php
Original file line number Diff line number Diff line change
Expand Up @@ -2486,7 +2486,7 @@ public function WelcomeInfo()
$this->app->Tpl->Add('TAB1',"Sie benutzen die kommerzielle Version von Xentral. Alle Rechte vorbehalten. Beachten Sie die Nutzungsbedinungen.<br><br>&copy; Copyright by Xentral ERP Software GmbH Augsburg");
}
else {
$this->app->Tpl->Add('TAB1','Xenomporio is free open source software under AGPL-3.0 license, based on <a href="https://xentral.com" target="_blank">Xentral®</a> by Xentral&nbsp;ERP&nbsp;Software&nbsp;GmbH.<br><br><div class="info"><img src="themes/new/images/Xentral_ERP_Logo-200.png"><br>Das Logo und der Link zur Homepage <a href="https://xentral.biz" target=\_blank\>https://xentral.biz</a> d&uuml;rfen nicht entfernt werden.</div><br>&copy; Copyright by Xenomporio project & Xentral ERP Software GmbH Augsburg');
$this->app->Tpl->Add('TAB1','OpenXE is free open source software under AGPL-3.0 license, based on <a href="https://xentral.com" target="_blank">Xentral®</a> by Xentral&nbsp;ERP&nbsp;Software&nbsp;GmbH.<br><br><div class="info"><img src="themes/new/images/Xentral_ERP_Logo-200.png"><br>Das Logo und der Link zur Homepage <a href="https://xentral.biz" target=\_blank\>https://xentral.biz</a> d&uuml;rfen nicht entfernt werden.</div><br>&copy; Copyright by OpenXE project & Xentral ERP Software GmbH Augsburg');
}

if($this->app->erp->isIoncube() && method_exists($this->app->erp, 'IoncubeProperty'))
Expand Down
6 changes: 3 additions & 3 deletions www/setup/setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -363,15 +363,15 @@ function HtmlTemplate($html)
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">
<html><head>
<style type=\"text/css\">{$cssContent}</style>
<title>Xenomporio Installer</title>
</head><body class=\"slide-{$step}\"><div id=\"main\"><div class=\"header\"><h1 class=\"headline\">Xenomporio Installer</h1></div><div class=\"content\"><form action=\"\" method=\"POST\">
<title>OpenXE Installer</title>
</head><body class=\"slide-{$step}\"><div id=\"main\"><div class=\"header\"><h1 class=\"headline\">OpenXE Installer</h1></div><div class=\"content\"><form action=\"\" method=\"POST\">
{$html}
</form></div>
<!--
<div class=\"footer\"><p>Nutzen Sie unseren <a href=\"https://shop.xentral.biz/sonstige/1-jahr-zugang-updateserver-open-source-version.html?c=164?c=164\" target=\"_blank\">Update-Server</a> um auch mit der Open-Source Version mit Updates versorgt zu sein.</p></div>
--!>
<div class=\"footer\"><p>
Xenomporio is free open source software under AGPL-3.0 license, based on <a href=\"https://xentral.com\" target=\"_blank\">Xentral®</a> by Xentral&nbsp;ERP&nbsp;Software&nbsp;GmbH.</p></div>
OpenXE is free open source software under AGPL-3.0 license, based on <a href=\"https://xentral.com\" target=\"_blank\">Xentral®</a> by Xentral&nbsp;ERP&nbsp;Software&nbsp;GmbH.</p></div>
</div></body></html>";
}

Expand Down
12 changes: 12 additions & 0 deletions www/themes/new/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -223,11 +223,23 @@ html {
padding-left: 25px;
}

#sidebar .logo-index .sidebar_icon_logo{
display: none;
}

#sidebar.collapsed .logo-index{
width: 55px;
text-align: left;
}

#sidebar.collapsed .logo-index .sidebar_logo {
display: none;
}

#sidebar.collapsed .logo-index .sidebar_icon_logo {
display: block;
}

#sidebar .sidebar-list{
padding: 15px 0;
}
Expand Down
Binary file modified www/themes/new/images/favicon/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified www/themes/new/images/favicon/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified www/themes/new/images/favicon/favicon.ico
Binary file not shown.
Loading

0 comments on commit 1ce413a

Please sign in to comment.