Files
ms1inscription-v5/sql/MSIN-promoteur-hub-annonces-doc.sql
stephan 683e2d69d0 Update promoteur hub styles and enhance event section rendering
This commit modifies the CSS for the promoteur hub, introducing new styles for card elements, including updated colors, borders, and shadows for improved aesthetics. It also enhances the event section rendering by adding a specific class to the event title, ensuring consistent styling across the promoteur hub. Additionally, the version code is incremented to reflect these changes.
2026-06-25 17:15:37 -04:00

35 lines
3.2 KiB
SQL

-- Exemple de contenu "Nouveautes MS1" pour le hub promoteur (module doc multipage).
-- Anchor + module appeles par fxDocRenderModule('promoteur_hub_annonces').
-- Prerequis : tables doc_mod / doc_page / doc_anchor (voir MSIN-doc-module.sql).
SET NAMES utf8mb4;
-- Reimport propre
DELETE FROM doc_page WHERE doc_mod_clef = 'promoteur_hub_annonces';
DELETE FROM doc_anchor WHERE doc_anchor_clef = 'promoteur_hub_annonces';
DELETE FROM doc_mod WHERE doc_mod_clef = 'promoteur_hub_annonces';
INSERT INTO `doc_mod` (`doc_mod_clef`, `doc_mod_prg`, `doc_mod_titre`, `doc_mod_actif`, `doc_mod_tri`, `doc_mod_creation`)
VALUES ('promoteur_hub_annonces', 'compte.php', 'Nouveautes MS1', 1, 10, NOW());
INSERT INTO `doc_anchor` (`doc_anchor_clef`, `doc_mod_clef`, `doc_prg`, `doc_actif`, `doc_creation`)
VALUES ('promoteur_hub_annonces', 'promoteur_hub_annonces', 'compte.php', 1, NOW());
-- FR
INSERT INTO `doc_page` (`doc_mod_clef`, `doc_page_clef`, `doc_langue`, `doc_titre`, `doc_sous_titre`, `doc_html`, `doc_prg`, `doc_tri`, `doc_actif`, `doc_creation`) VALUES
('promoteur_hub_annonces', 'annonce_hub', 'fr', 'Nouveau tableau de bord promoteur', 'Acces direct a vos evenements',
'<article class="ms1-doc-article"><p>Bienvenue dans votre <strong>nouveau hub promoteur</strong>. Vous arrivez maintenant directement sur la liste de vos evenements, avec acces rapide a tous vos tableaux de bord.</p><ul><li><strong>En vedette</strong> : vos evenements a venir et recents.</li><li><strong>Evenements passes</strong> : toujours accessibles, en second plan.</li></ul><p>Cliquez <strong>Tableau de bord</strong> sur un evenement pour deplier toutes ses fonctions (rapports et gestion).</p></article>',
'compte.php', 10, 1, NOW()),
('promoteur_hub_annonces', 'annonce_versions', 'fr', 'Versions a venir', 'Restez informe',
'<article class="ms1-doc-article"><p>Nous publierons ici les <strong>annonces de mise a jour</strong> : nouvelles fonctions, ameliorations et dates des prochaines versions.</p><blockquote>Cet espace est un exemple. Modifiez-le via l''editeur de documentation.</blockquote></article>',
'compte.php', 20, 1, NOW());
-- EN
INSERT INTO `doc_page` (`doc_mod_clef`, `doc_page_clef`, `doc_langue`, `doc_titre`, `doc_sous_titre`, `doc_html`, `doc_prg`, `doc_tri`, `doc_actif`, `doc_creation`) VALUES
('promoteur_hub_annonces', 'annonce_hub', 'en', 'New promoter dashboard', 'Direct access to your events',
'<article class="ms1-doc-article"><p>Welcome to your <strong>new promoter hub</strong>. You now land directly on your events list, with quick access to all your dashboards.</p><ul><li><strong>Highlights</strong>: your upcoming and recent events.</li><li><strong>Past events</strong>: still available, in the background.</li></ul><p>Click <strong>Dashboard</strong> on an event to expand all its functions (reports and management).</p></article>',
'compte.php', 10, 1, NOW()),
('promoteur_hub_annonces', 'annonce_versions', 'en', 'Upcoming versions', 'Stay informed',
'<article class="ms1-doc-article"><p>We will post <strong>update announcements</strong> here: new features, improvements and upcoming release dates.</p><blockquote>This space is an example. Edit it through the documentation editor.</blockquote></article>',
'compte.php', 20, 1, NOW());