getTplRadioGroup() now auto-detects boolean yes/no option sets and emits the sl-radio-switch CSS class, rendering them as pill-style toggle switches. Multiple admin template fragments receive targeted attribute improvements to reduce PHP-side attribute injection and centralize behavior in the template.
Core changes:
- Helpers (core/helpers.php):
getTplRadioGroup(): detects 2-option groups with values '0' and '1' * Auto-sets switch=true unless caller overrides via 'switch' key * Passes switch flag to block-content fragment
- block-content.html:
Adds sl-radio-switch class when switch=true alongside sl-radio-group * Enables CSS pill/toggle rendering for boolean radio groups
- button.html:
Auto-sets type="submit" when submit_label is present and button_type is absent * Prevents accidental type="button" on submit-intended buttons
- checkbox.html:
is_check flag now renders class="sl-check" and data-sl-check-item attribute * Replaces inline input_class="sl-check" and manual data- injection from PHP * Used by setTableCheckAll() in slaed.js for master/item check wiring
- label-hint.html:
- Removed embedded ':' from template
- Wraps label text in <span class="sl-div-label-main"> for CSS ::after targeting
- select.html:
- Added selectid attribute rendered as id="{{ selectid }}"
Added imgtar attribute rendered as data-sl-image-replace="{{ imgtar }}" * Replaces hardcoded id="img_replace" dependency in PHP and JS
- th.html:
Adds data-sl-check-all attribute to is_col_check header cells * Enables setTableCheckAll() click delegation without id dependency
- checkbox.html (default, lite, simple templates):
- Same is_check / sl-check / data-sl-check-item changes for frontend forms
Benefits: - Boolean config toggles visually communicate on/off state as pill switches - Fragment attributes centralize behavior wiring; PHP passes semantic flags - setTableCheckAll() works via data attributes, removing global CheckBox() function
Technical notes: - sl-radio-switch class requires CSS from new.css to style the pill appearance - Backward compatible: groups with more than 2 options or non-bool values stay unchanged - No DB schema changes
Continues the label colon removal from commit 2, covering all remaining module admin and frontend form rows. Core user.php and helpers.php are also cleaned up: form-field-row label values no longer carry hard-coded ':' suffixes, delegating colon rendering entirely to CSS.
Core changes:
- Core helpers (core/helpers.php):
- getTplAddFieldRows(): removed ':' from label_html assignment
- Core user (core/user.php):
- setComShow(): removed ':' from _YOURNAME and _COMMENT labels
- getPrivateMessageView(): removed ':' from _PRRE, _TITLE, _MESSAGE labels
- Module admin panels — all label_html colon suffixes removed:
- modules/account/admin/index.php
- modules/auto_links/admin/index.php
- modules/changelog/admin/index.php
- modules/clients/admin/index.php
- modules/contact/admin/index.php
- modules/content/admin/index.php
- modules/faq/admin/index.php
- modules/files/admin/index.php
- modules/help/admin/index.php
- modules/jokes/admin/index.php
- modules/links/admin/index.php
- modules/media/admin/index.php
- modules/money/admin/index.php
- modules/order/admin/index.php
- modules/rss/admin/index.php
- modules/search/admin/index.php
- modules/shop/admin/index.php
- modules/voting/admin/index.php
- modules/whois/admin/index.php
- Module frontend views — all label colon suffixes removed:
- modules/account/index.php
- modules/auto_links/index.php
- modules/contact/index.php
- modules/forum/index.php
- modules/media/index.php
- modules/money/index.php
- modules/order/index.php
- modules/recommend/index.php
- modules/rss/index.php
- modules/search/index.php
- modules/shop/index.php
Benefits: - Uniform colon rendering via CSS ::after across all form labels - Constants remain clean strings usable anywhere without punctuation - Zero functional change; affects visual rendering only via stylesheet
Technical notes: - CSS rule added in new.css targets .sl-div-label and .sl-div-label-main - No DB schema changes; no API contract changes
News and pages admin list views gain a live search bar that filters by ID, title, author, category, or IP using parameterized queries. Matching substrings are highlighted via filterTextHighlight(). Pages admin also receives the full batch-action form and pager that news already had, bringing both modules to feature parity.
Core changes:
- News admin (modules/news/admin/index.php):
- Added getNewsSearch(): renders search form with field selector and text input
news(): reads search/chng from req, builds dynamic WHERE clause with named params * Five search modes: ID, title, author (name/nick), category, IP * filterTextHighlight() applied to id, title, author, category, IP cells * Pager updated to pass where_params for filtered count
- news(): subtitle_html passes search form into admin tab header
- Removed label_html colon suffix from add() form rows
- Removed hardcoded OnClick="CheckBox()" from markcheck header checkbox
- Pages admin (modules/pages/admin/index.php):
- Added getPagesSearch(): identical structure to getNewsSearch()
pages(): same search/chng/WHERE parameterization as news * filterTextHighlight() applied to id, title, author, category, IP cells
pages(): upgraded from plain table to form with batch-action select + pager * Added checkbox column to each row (is_check) * Added markcheck header checkbox for select-all * Batch actions: activate, deactivate, ihome on/off, date toggle,
comments 0/1/2, move to category, delete
- Fixed ambiguous WHERE clause: p.id instead of bare id in SELECT
- Removed label_html colon suffix from add() form rows
Benefits: - Editors can filter long news/pages lists without leaving the admin panel - Match context is highlighted inline; no extra page load - Pages list now supports the same bulk operations as news
Technical notes: - Search uses LIKE with named placeholders; no raw interpolation - filterTextHighlight() is already defined in core; no new helpers needed - Pager where_params added to support filtered total-row counts - No DB schema changes
All label_html values in admin module form rows previously appended a literal ':' via string concatenation (e.g. _SOMETHING.':'). The colon is now rendered by CSS ::after on the .sl-div-label element, making the label text constants reusable as tooltips, headings, and aria-labels without embedded punctuation.
Core changes:
- Admin modules (admin/modules/admins.php):
- Removed ':' suffix from all label_html strings
- Admin modules (admin/modules/blocks.php):
- Removed ':' suffix from all label_html strings
- Admin modules (admin/modules/categories.php):
- Removed ':' suffix from all label_html strings
Admin modules (admin/modules/comments.php, editor.php, fields.php, groups.php, lang.php, messages.php, modules.php, newsletter.php, replace.php, scheduler.php, security.php, uploads.php):
- Removed ':' suffix from all label_html strings
Benefits: - Colons are now a single CSS-controlled convention, not scattered literals - Constants remain punctuation-free for reuse in non-form contexts - Architecture alignment with label-hint fragment which already uses CSS colon
Technical notes: - No functional change; purely a presentation refactor - label-hint fragment wraps label in span.sl-div-label-main; CSS rule targets .sl-div-label::after and .sl-div-label-main::after
Admin panel now supports a configurable logo image selected from the logos directory, rendered as an <img> tag in both the main admin layout and the login (bare) layout, replacing the hard-coded CSS background sprite approach.
Core changes:
- Config panel (admin/modules/config.php):
Added admin_logo selector reading from templates/admin/images/logos/ * Uses same scandir/select-option pattern as site_logo * Preview image linked via selectid/imgtar fragment attributes
- Removed trailing colons from all label_html strings in this file
- save(): added admin_logo extraction and validation via basename()
- System head (core/system.php):
setHead(): resolves admin_logo path via img_find(), falls back to default * Passes adlogo, adalt, adtitle vars to admin layout templates
- ashowcom(): removed hardcoded OnClick="CheckBox()" from markcheck input
- Templates (templates/admin/layouts/admin.html, bare.html):
- Replaced CSS-background h1>a text link with <img> tag using adlogo/adalt/adtitle
- Removed class="thide" from brand link
- Config defaults (config/global.php):
- Added admin_logo key with default slaed_logo_256x73.png
- Moved editor array to alphabetical position
- Updated copyright symbol to Unicode ©
- Rotated sitekey value
- Lang strings (admin/lang/*.php — all 6 languages):
- Added _ADMINLOGO and _ADMINLOGOP constants
- Clarified _DEVMODE label (added ?)
- Clarified _OGRAPH and _SCHEMA labels (added "Enable/Aktivieren/Activer/Włączyć/Активировать/Активувати" prefix and ?)
Benefits: - Logo is now a first-class config option without CSS overrides - login and admin pages share the same logo variable - Consistent with site_logo selector pattern already in config
Technical notes: - Logo path is validated on save; invalid name falls back to slaed_logo_256x73.png - No DB schema changes - Backward compatible: existing installs without admin_logo key use the default
Rename renderFootControls to getFootControls, add is_col_status markers and language link CSS class to admin list builders, apply column class_name in newsletter and account modules, and update config fingerprint.
Core changes:
- Footer function rename (core/system.php):
- renderFootControls() renamed to getFootControls() with shorter param names
- Both call sites in setFoot() updated
- Admin list builders (core/admin.php):
- Add class 'sl-admin-language-link' and is_menu_list_image to language switcher
- Mark status cells with is_col_status => true in category, block, private lists
- Fix is_last flag in block list tip items (was incorrectly bound to $lang check)
- Column classes (admin/modules/newsletter.php):
- Add class_name 'sl-col-sent' to newsletter sent-count column (head + body)
- Account admin (modules/account/admin/index.php):
- Add class_name 'sl-col-ip' to IP column (head + body rows)
- Add autofocus => true to signature textarea in add form
- Config (config/local.php):
- Update base_fingerprint to reflect current template asset state
Benefits: - getFootControls follows project naming convention (get* prefix for renderers) - is_col_status enables template-side alignment without hardcoded selectors - Column class_name allows CSS targeting of specific data columns
Technical notes: - getFootControls is a non-breaking rename; no callers outside setFoot() - Fingerprint update required after CSS and JS asset changes in this batch
Add autofocus parameter to getTplTextarea() and implement editor-level focus in the ToastUI driver, enabling modules to declare which field receives keyboard focus on page load. Also fix category select indent encoding and improve editor height calculation.
Core changes:
- Textarea helper (core/helpers.php):
- Add 'autofocus' key forwarded to template via getTplTextarea()
Fix category-select indent: replace raw HTML entity string with html_entity_decode() to avoid double-encoding in templates
- ToastUI editor driver (plugins/editors/toastui/driver.php):
- Honor autofocus data key: emit JS setTimeout focus on editable surface
- Replace fixed rows
height formula with tiered defaults (250/300/500px) - Support explicit 'height' override via data key
Benefits: - Modules can declare autofocus declaratively without custom JS overrides - ToastUI focus targets contenteditable, ProseMirror, or textarea fallback - Height tiers produce better visual defaults for short vs. full editor profiles
Technical notes: - Focus fires after 300ms delay to allow ToastUI initialization to complete - Category indent precomputes the nbsp string once per query for efficiency - Minimum height clamped to 250px regardless of rows or override value
Restructure the bulk-action <select> into labeled <optgroup> sections (actions vs. move-to-category) and add autofocus to the body textarea on the add-news form for faster keyboard-driven entry.
Core changes:
- Bulk action selector (modules/news/admin/index.php):
- Split $actopts into $modopts (action options) and category opts
- Wrap each group in <optgroup> via new select-optgroup fragment
- Remove "Move to: " prefix from category option labels (now in group label)
- New fragment (templates/admin/fragments/select-optgroup.html):
- Renders <optgroup label="..."> with inner options_html
- Add form autofocus (modules/news/admin/index.php):
- Pass autofocus => true to hometext getTplTextarea call
Benefits: - Batch selector is visually grouped and easier to scan at a glance - autofocus moves keyboard focus directly to body on add-news page
Technical notes: - select-optgroup.html is a shared admin fragment reusable in other modules - Placeholder option (_OPMOD) remains as the default unselected item
Replace all sprite.png-based icons in admin UI components (tooltips, move controls, status badges) with Bootstrap Icons SVG font, enabling vector rendering, keyboard accessibility, and theme-aware coloring across all template variants.
Core changes:
- Tooltip styles (new.css × 4 templates, system.css):
- Replace sprite background-image with inline Bootstrap Icon (bi-info-circle-fill)
- Add tabindex="0" and focus-visible outline for keyboard accessibility
- Replace <br>-separated items with <dl>/<dt>/<dd> grid layout
- Remove legacy .sl_tip definition from system.css (merged into new.css)
- Move controls (new.css, move-controls.html):
- Replace sprite arrows with Bootstrap Icons (\f139 up, \f118 down)
- Add .sl-move-controls flex wrapper for alignment
- Add hover/focus scale and color transitions
- Status icons (new.css, inline-badge.html):
- Add .sl-status-active and .sl-status-inactive icon classes
- Wire is_status_active / is_status_inactive flags in inline-badge fragment
- Floating panel engine (floating.js):
- New JS module: viewport-aware positioning for .sl-tip and .sl-menu dropdowns
- Handles edge overflow, above/below flip, arrow alignment
- Binds to DOMContentLoaded and htmx:load for HTMX fragment reloads
- Admin CSS tweaks (system.css, theme.css):
- Add .sl-col-check column alignment rules
- Add .sl-admin-language-link hover styles
- Unify hover background-color to #f7fbfd across all table components
- Remove font-weight:bold from inline button rule
Benefits: - Scalable vector icons replace fixed-size 16x16 sprite fragments - Tooltips and menus are now keyboard-navigable (tabindex, focus-within) - Consistent hover token (#f7fbfd) across all list and table components
Technical notes: - Bootstrap Icons font already present in admin layout - floating.js replaces CSS :hover positioning with JS viewport-aware placement - .sl_tip legacy alias preserved in new.css for modules not yet migrated
Refresh the language flag set across all four themes, dropping legacy short-code and _mini filenames in favor of consistent country-based naming matched by getLanguageFlagSrc(), and re-export the remaining flags with a unified visual style.
Core changes:
- New country-named flags (templates/{admin,default,lite,simple}/images/lang/):
Add usa.png, russia.png, iran.png, syria.png, moldova.png, south_korea.png, north_korea.png, faeroe_islands.png
Names align with getLanguageFlagSrc() mapping and with the common ISO short-code <-> country pairing used by the admin switcher
- Legacy short-code removal (templates/{admin,default,lite,simple}/images/lang/):
- Remove de.png, en.png, fr.png, pl.png, ru.png, uk.png
Remove all _mini variants (de_mini.png, en_mini.png, fr_mini.png, pl_mini.png, ru_mini.png, uk_mini.png)
Admin no longer ships _mini files; the frontend no longer ships short-code duplicates
- Long-form name removal (templates/{admin,default,lite,simple}/images/lang/):
Remove russian_federation.png, islamic_republic_of_iran.png, syrian_arab_republic.png, republic_of_korea.png, democratic_peoples_republic_of_korea.png, republic_of_moldova.png, united_states_of_america.png, europe.png, islands.png
- Superseded by the shorter country-named equivalents
- Visual refresh (templates/{admin,default,lite,simple}/images/lang/):
Re-export the remaining country flags with a consistent style; binary content changes across the full set in every theme
Benefits: - Filenames align with the runtime flag resolver, eliminating the previous dependency on short-code and _mini lookups - Unified visual style across admin and frontend themes - Smaller, cleaner flag inventory with one canonical filename per country
Technical notes: - Binary-only change; no code is touched in this commit - Depends on the previous commit that introduces getLanguageFlagSrc() and maps short codes to the new country-named files - Admin and frontend themes now share the same filename conventions





