- Add widget box showing products starting with "New" that need review - Add dashboard statistics for new products (small info box) - Add new_products.php page listing all products to review - Add CSS for dashboard icon - Shows 5 entries on homepage, all entries on product page Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?php
|
|
/* Copyright (C) 2024 Eduard Wisch <data@data-it-solution.de>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*/
|
|
|
|
/**
|
|
* \file css/importzugferd.css.php
|
|
* \ingroup importzugferd
|
|
* \brief CSS file for importzugferd module
|
|
*/
|
|
|
|
// Load Dolibarr environment
|
|
if (!defined('NOREQUIRESOC')) {
|
|
define('NOREQUIRESOC', '1');
|
|
}
|
|
if (!defined('NOTOKENRENEWAL')) {
|
|
define('NOTOKENRENEWAL', '1');
|
|
}
|
|
if (!defined('NOLOGIN')) {
|
|
define('NOLOGIN', '1');
|
|
}
|
|
if (!defined('NOREQUIREHTML')) {
|
|
define('NOREQUIREHTML', '1');
|
|
}
|
|
if (!defined('NOREQUIREAJAX')) {
|
|
define('NOREQUIREAJAX', '1');
|
|
}
|
|
|
|
session_cache_limiter('public');
|
|
|
|
require_once '../../../main.inc.php';
|
|
|
|
header('Content-Type: text/css');
|
|
|
|
?>
|
|
/* Icon for importzugferd new products dashboard box */
|
|
.fa-dol-importzugferd_newproducts:before {
|
|
content: "\f1b3"; /* FontAwesome cubes icon for products */
|
|
}
|
|
|
|
/* Background color for the dashboard box */
|
|
.bg-infobox-importzugferd_newproducts {
|
|
background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%) !important;
|
|
}
|