Последнии сообщения форума
Wire icon_name into the block-sidebar partial and top-menu link
fragment so every admin sidebar panel and toolbar entry carries a
contextual Bootstrap Icon. Add --sl-color-primary-hover-soft token
and a dedicated .sl-admin-shell sidebar skin with tight spacing,
rounded tiles, and per-block-id header colour overrides.
Core changes:
- Template (block-sidebar.html):
- Render
<i class="bi bi-{{ icon_name }}">in h3 when icon_name is set - Icon wiring — PHP (admin/index.php, core/admin.php, core/system.php):
- Pass icon_name to all eight block-sidebar calls (shield-lock, puzzle, stars, hourglass-split, pencil-square, eye)
- Add icon key to every top-menu item array; forward as icon_name to getHtmlFrag('link')
- CSS tokens (base.css):
- Add
--sl-color-primary-hover-soft: #58a0c8 - Link :hover uses soft token and drops underline
- CSS sidebar skin (theme.css):
.sl-wrapper.sl-admin-shell .sl-admin-sidebar: tight CSS variables, rounded headers, icon sizing, per-block colour overrides- Menu grid: border/shadow moved from link to item wrapper; link reset to transparent/no-shadow
- Toolbar links: gap + padding added,
.biicon sizing rules, padding removed from innerb .sl-wrapper a:hoverscoped soft-colour override- Sidebar block base: gradient bg, lighter border (border not border-strong)
Benefits: - Sidebar blocks are visually identifiable by icon without reading the title - Top-menu entries gain icon context for faster scanning - Tight-shell skin aligns sidebar spacing with the updated layout
Technical notes: - icon_name is optional — partial renders nothing when absent (backward-compatible) - No database or API changes
Introduce a dedicated --sl-color-primary-center (#174372) token for the
login header gradient midpoint and narrow the separator side offsets from
10 px to 5 px for a crisper edge. Replace two statistic demo pages with
the admin left-blocks layout demo.
Core changes:
- Login header separator (base.css, theme.css):
Add
--sl-color-primary-center: #174372CSS variable * Replaces--sl-color-primaryat the 47.5–52.5 % gradient stops- Tighten
right/leftfrom 10 px to 5 px - Demo docs (docs/):
- Remove statistic-browser-analysis-demo.html and statistic-monitor-dashboard.html
- Add admin-left-blocks-demo.html
- Config (config/local.php):
- Routine base_fingerprint update
Benefits: - Separator midpoint color is independently tunable without affecting primary usages elsewhere - Narrower margins align separator precisely with the login form card edges
Technical notes: - Purely presentational — no functional or API changes
Removes the fixed width from .sl-block-sidebar, trims padding and background gradient from .sl-admin-sidebar, removes margin/padding from .sl-admin-content, and adjusts .sl-admin-content-inner and .sl-toolbar spacing for a cleaner fluid layout.
Core changes:
- Admin sidebar block (theme.css — .sl-block-sidebar):
- Removed width: 275px; block now sizes via its flex/grid parent
- Admin sidebar column (theme.css — .sl-admin-sidebar):
- padding: 13px 11px 15px 11px → 8px 0px
- Removed multi-stop background gradient (now inherits parent bg)
- Admin content area (theme.css — .sl-admin-content):
- Removed margin: 8px 6px 15px 0
- Removed padding: 0 0 15px 0
- Admin content inner (theme.css — .sl-admin-content-inner):
- padding: 0 var(--sl-space-lg) 15px → 0px 0px 0px 8px
- Toolbar (theme.css — .sl-toolbar):
- margin: 0 10px 0 5px → 0 0 0 12px
Benefits: - Sidebar width adapts to container; no overflow on narrow viewports - Content area padding controlled at inner level, not duplicated on outer
Technical notes: - No new CSS classes; all changes are targeted property updates - No HTML structure changes required
Adds filterConst() to the Template compiler pipeline so that {{ _UPPER_SNAKE }} tokens are compiled into defined()-guarded PHP echoes instead of being silently dropped or mishandled by filterEcho(). Documents the new syntax in TEMPLATES.md.
Core changes:
- Template compiler (core/classes/template.php — filterConst()):
- Matches {{ _NAME }} where NAME is UPPER_SNAKE with _ prefix, 1-11 chars
- Compiles to: <?= defined('_NAME') ? $this->getSafe(_NAME) : ''; ?>
- Runs before filterEcho() so constant tokens are consumed first
- Negative lookahead/lookbehind prevents matching {{{ _RAW }}} raw tags
- Docs (docs/TEMPLATES.md):
- Added one-line entry for {{ _CONST }} syntax under the runtime features list
Benefits: - Language constants can be used directly in .html fragment files - Compiled output is cache-safe: defined() checked at render time, not compile time - No change to existing {{ var }} or {{{ raw }}} behavior
Technical notes: - Regex: /(?<!\{)\{\{\s([A-Z][A-Z0-9]{0,10})\s\}\}(?!\})/ - getSafe() HTML-escapes the constant value before output - filterConst() is inserted before filterEcho() in the compile() pipeline
Adds getStatExtPanel() which reads fields 8-16 from the statistic log, aggregates them across all rows of the selected archive or current period, and renders an inline dashboard with ring charts, bar charts, and an hourly hit chart. Panel is appended after the existing statistic table.
Core changes:
- getStatExtPanel() (admin/modules/statistic.php):
- Reads days.log + statistic.log (current) or an archive file
Aggregates counter fields 8-12, 14-16 via getCounterField() and sums the 24-slot hours field (index 13)
Ring charts (SVG): Human Traffic %, Mobile Share %, Return Depth %, Search Share % — 4-up grid, responsive 2-col on narrow viewports
Bar charts (2-col grid): Browsers, OS, Devices, Countries, Refcat, New/Returning, Depth, Duration — sorted by count, preserves order where a canonical key order is specified (Devices, Refcat, etc.)
- Hourly hits bar chart (SVG, 24 bars, x-axis labels every 3 hours)
- Falls back to a plain "not available" notice when field 8 is absent
- statistic() (admin/modules/statistic.php):
- Added echo getStatExtPanel($file) after the existing statistic table
Benefits: - One-screen overview of browser/device/geo/session metrics per period - No extra DB queries; reads the same log files as the existing counter - Inline <style> scoped to sl-statx-* classes; no theme.css modifications needed
Technical notes: - Ring chart: uses SVG stroke-dashoffset on a r=38 circle (circumference 238.76) - Bar chart labels truncated at 120px via CSS text-overflow - getStatExtPanel() uses CSS custom properties from the admin theme (--bg, --line, --shadow, --soft, --muted, --blue2, --green, --purple, --orange)
Extends updateStatsTrack() to collect per-hit UA breakdowns, GeoIP country, referral category, hourly distribution, and sliding session state (new/returning, depth, duration). All new data is written as additional pipe-separated fields (indices 8-16) appended to the existing statistic.log line format.
Core changes:
- UA parser (core/system.php — getAgentInfo()):
Detects browser (Chrome, Firefox, Edge, Opera, Safari, IE), OS (Windows, Android, iOS, macOS, Linux), and device (desktop, mobile, tablet, bot)
- Bot detection via UA regex; guest===1 always maps to Bot
- Counter field helpers (core/system.php):
- getCounterField(): parses "key:count,key:count" field into a map
- updateCounterField(): increments a key, keeps top-10 + Other overflow bucket
- Hourly distribution (core/system.php — updateHoursField()):
- Maintains a 24-slot comma-separated hit count per hour
- Session tracking (core/system.php — updateSessionState()):
- File-based sliding window (1800s) keyed by stats_id cookie
- Tracks first-visit, last-visit, hit depth per session
- Returns is_new, depth, duration for the current hit
- Bucket classifiers (core/system.php):
- getSessionDepthBucket(): maps depth to 1 / 2-3 / 4-7 / 8+
- getSessionDurationBucket(): maps seconds to <30s / 30s-3m / 3m-15m / 15m+
- Referral category (core/system.php — getRefCategory()):
- Classifies referer into direct, search, social, or referrer
- updateStatsTrack() extended (core/system.php):
- Gathers agent info, refcat, GeoIP country, session state before write
- Sets fields [8..16] on the statistic.log line in all three write paths
Benefits: - Rich per-day analytics available without changing the core log file structure - Session tracking uses httponly cookie with 1-year TTL, no DB required - All new fields are backward-compatible (absent = treated as empty)
Technical notes: - stats_id cookie set via setcookie() only when headers not yet sent - Fields 8-16 extend the existing 0-7 statistic.log schema non-destructively - Geoip::getCountry() used only if the Geoip class exists (class_exists check)
Adds four standalone HTML demo files to docs/ for the statistics subsystem: a browser analysis demo, a monitor dashboard, and two etalon/reference variants. These files are design references and are not loaded by the CMS at runtime.
Core changes:
- Demo files (docs/):
- statistic-browser-analysis-demo.html — browser/UA analysis visualization
- statistic-monitor-dashboard.html — statistics monitor dashboard layout
- statistic-monitor-etalon-demo.html — etalon reference demo
- statistic-monitor-etalon-v2.html — etalon reference v2
Benefits: - Design references available alongside the codebase for review - No runtime impact; files are not referenced from any CMS module
Technical notes: - Standalone HTML; no CMS dependencies or includes - Located in docs/ which is not served by the web root





