Чтение RSS каналов

Журнал изменений

Фильтр и поиск

Всего: 500 Доступных коммитов | Отфильтровано: 500 Коммиты | Страница: 1 / 50
Вчера (25.03.2026)
Update Phoenix Template Engine docs and adjust cache paths & regex
Автор: Eduard Laas | Дата: 15:29 25.03.2026
Docs: update Phoenix Template Engine developer documentation
Автор: Eduard Laas | Дата: 10:19 25.03.2026

Revise the template admin guide to reflect the current architecture: component/slot syntax, corrected cache path, removal of legacy layout tags, and clarified fragment/partials directory roles.

Core changes:

  1. Architecture section (admin/info/template/ru.md):
  2. Rename title to "Phoenix Template Engine" to match class identity
  3. Clarify layouts/partials/fragments roles with updated descriptions
  4. Note cache dir: storage/cache/templates/<theme>/
  5. State that legacy layouts and {%MODULE%}-style tags are removed

Benefits: - Documentation matches the implemented template system - Developers get accurate directory and directive references

Technical notes: - Russian-language documentation file, no code changes

Test: align test suite with fragment variable API changes
Автор: Eduard Laas | Дата: 10:19 25.03.2026

Update tests to reflect renamed template variables in partials/preview.html and the new required fragment path convention for frontend themes.

Core changes:

  1. Variable name update (tests/Unit/AdminPreviewBridgeFlowTest.php):
  2. Replace fields/fields1/fields2/fields3 with title_html/body_a/body_b/body_c in all three test scenarios (direct render, missing theme, bridge flow)

  3. Required fragment path update (tests/TemplateValidationTest.php):
  4. Change required template check from basic.html/title.html to fragments/basic.html/fragments/title.html for frontend themes

Benefits: - Tests reflect the actual template variable contract - Fragment path validation aligned with new theme structure

Technical notes: - No test logic changed, only variable names and path strings updated - All three AdminPreviewBridgeFlow scenarios updated consistently

Refactor: replace inline HTML with fragment-based rendering functions
Автор: Eduard Laas | Дата: 10:19 25.03.2026

Extract all inline HTML string construction from system.php and admin.php into dedicated template fragment helper functions, backed by per-theme atomic fragment HTML files. Legacy standalone templates deleted; new fragment files added for all four themes (admin, default, lite, simple).

Core changes:

  1. Fragment rendering functions (core/system.php):
  2. Replace inline foot/category/pager HTML with renderFootControls(), categoryIconLink(), categoryTitleLink(), categoryIconText(), categoryTitleText(), categoryTextLink(), categorySubItem(), categoryRow(), pagerLink(), pagerCurrent()

  3. Add head_html, blocks_left, blocks_right, blocks_down to adminvars
  4. Admin UI fragment functions (core/admin.php):
  5. Replace inline tab list/link HTML with adminTabListOpen(), adminTabListClose(), adminTabLink()

  6. Add adminInfoCountValue() helper using admin-info-count fragment
  7. Legacy core removed (core/template.php):
  8. File deleted; functionality fully absorbed by Template class
  9. New fragment HTML files (templates/*/fragments/):
  10. Add ~50 atomic fragment files per theme: comment, editor, admin-block, session, preview-title, foot-controls, navi-lower, etc.

  11. Update partials/preview.html variable API: fields → title_html, fields1 → body_a, fields2 → body_b, fields3 → body_c

  12. Update fragments/comment.html for all themes
  13. Legacy templates removed:
  14. Delete basic.html, title.html, preview.html, spoiler.html, warn.html, basic-changelog*.html, layouts/main.html and similar per-theme files

Benefits: - Inline HTML fully removed from PHP business logic - Theme authors can override any UI fragment without touching PHP - Consistent, semantic variable names across all fragment templates

Technical notes: - partials/preview.html variables renamed: fields/fields1/fields2/fields3 → title_html/body_a/body_b/body_c (breaking for custom themes) - renderFootControls() replaces hardcoded foot_html string - All themes must provide required fragment files

Refactor: add component/slot compilation to Template class
Автор: Eduard Laas | Дата: 10:19 25.03.2026

Introduce {% component %}/{% endcomponent %} and {% slot %}/{% endslot %} directives into the template compiler, enabling partials to receive isolated props and inlined slot payloads. Correct the view cache directory path from cache/view/ to cache/templates/ for consistency with storage layout.

Core changes:

  1. Component/slot filters (core/classes/template.php):
  2. Add filterComp() for {% component 'partials/foo.html' with vars %}...{% endcomponent %} * Path restricted to partials/ subdirectory * Prevents nested component blocks * Passes isolated props array and slot body to getComp()

  3. Add filterSlot() for {% slot name %}...{% endslot %} placeholders
  4. Compilation pipeline (core/classes/template.php):
  5. Register filterComp() and filterSlot() in compileCode()
  6. Add $slots property for slot state tracking
  7. Cache path correction (core/classes/template.php):
  8. Change cache dir: storage/cache/view/{theme} → storage/cache/templates/{theme}

Benefits: - Reusable partials with dynamic slot content - Template logic stays declarative and HTML-author-friendly - Cache path aligned with storage layout convention

Technical notes: - Component nesting is explicitly blocked at compile time - Slot body is passed as raw string evaluated in partial scope - No existing templates used {% component %}, no migration needed

Эта неделя (24.03.2026)
Refactor: complete lite theme migration and test suite fixes
Автор: Eduard Laas | Дата: 22:54 24.03.2026

Finalize Phase 6–9 changes for the lite theme and clean up test support files after Phase 12 legacy removal.

Core changes:

  1. Lite theme layout migration (templates/lite/):
  2. Delete index.html and index-main.html (legacy shell files)
  3. Refactor index.php to data-only provider
  4. Update layouts/app.html and layouts/home.html to new engine contract
  5. Add partials: menu.html, forum-teaser.html, contact-block.html
  6. Add fragments: forum-pagenum.html, forum-teaser-item.html
  7. Admin theme fragments (templates/admin/fragments/):
  8. Add admin-lang-item.html and admin-menu-item.html
  9. Test suite (tests/):
  10. Remove getThemeLoad/getThemeFile stubs from ViewTestBootstrap.php
  11. Fix if/endif balance regex in TemplateValidationTest.php
  12. Remove stale lite-menu assertion in ViewBridgeSmokeTest.php

Benefits: - Lite theme fully decoupled from legacy shell rendering - All themes consistent with new Template engine contract - Test suite passes cleanly after legacy stub removal

Feature: universal theme asset discovery and legacy shell removal
Автор: Eduard Laas | Дата: 22:53 24.03.2026

Add automatic CSS/JS loading from theme directories, removing the need to manually list theme files in config. Remove legacy admin shell files and the archived default_old theme directory as part of Phase 12 cleanup.

Core changes:

  1. Universal theme asset loader (core/system.php):
  2. Add getThemeAssets(theme, ext) — scans theme root, assets/vendor/*/, assets/{ext}/, and legacy js/ subdir in the correct load order

  3. Modify doCss() to auto-append theme CSS dirs (root, vendor, assets/css)
  4. Modify doScript() to auto-append theme JS files via getThemeAssets()
  5. Config decoupling (config/global.php):
  6. Remove templates/[theme]/ and plugins/bootstrap/ from css_f (bootstrap now loaded from theme vendor dir automatically)

  7. Theme assets are fully discovered at runtime, not config-driven
  8. Legacy removal (templates/admin/, templates/default_old/):
  9. Delete templates/admin/index.html and index-home.html (Phase 12)
  10. Delete templates/default_old/ directory (archived legacy theme)
  11. Clean up templates/admin/index.php (data-only provider)
  12. Fix statistic path (core/user.php):
  13. Replace CONFIG_DIR with COUNTER_DIR for statistic.log read

Benefits: - Adding a new theme requires zero config changes for CSS/JS loading - Vendor libs bundled with a theme are picked up automatically - Load order guaranteed: root → vendor → assets/css|js

Technical notes: - getThemeAssets() uses glob() with GLOB_ONLYDIR for vendor subdirs - Applies to both frontend and admin rendering paths - Cache invalidation: existing CSS/JS caches are bypassed on next request

Refactor: migrate setHead/setFoot to Template-based page rendering
Автор: Eduard Laas | Дата: 15:38 24.03.2026

Replace the string-replace index.php pipeline in setHead()/setFoot() with $tpl->getHtmlPage(); introduce pages, layouts, partials and fragments for all themes; migrate setExit() in access.php and security.php to the same engine.

Core changes:

  1. Render pipeline (core/system.php):
  2. setHead() buffers output via ob_start() and stores vars in $sitevars / $adminvars
  3. setFoot() renders the full page via $tpl->getHtmlPage() using those vars
  4. Unified theme resolution: getTheme() no longer returns 'admin' for ADMIN_FILE
  5. $tpl always instantiated with resolved theme (no more separate admin branch)
  6. addblocks() calls for left/right/down/message/center/foot moved into setFoot()
  7. setExit() migration (core/access.php, core/security.php):
  8. Both versions replaced inline HTML with $tpl->getHtmlPage('message')
  9. alert fragment used for the error message body
  10. Template structure — new files per theme (admin, default, lite, simple):
  11. layouts: app.html, home.html, admin.html, bare.html
  12. pages: module.html, home.html, admin.html, login.html, message.html, preview.html
  13. partials: login.html, registration.html, searchbox.html, preview.html
  14. fragments: block-left, code, comment, form-conf, hide, list-bottom, open, close, pagenum, panel-admin, panel-modul, quote, spoiler, voting-*, basic-monitor, basic

  15. Fragment updates:
  16. title.html extended in all themes with icon/subtitle/content layout block
  17. Theme head/foot vars (templates/admin/index.php, templates/lite/index.php):
  18. getAdminHeadVars() / getThemeHeadVars() / getThemeFootVars() return plain array keys (no {%key%} format) to match the new Template data contract

  19. Fixes and tests:
  20. modules/news/index.php: guard is_user() before $user[1] access
  21. tests: updated AdminLoginBridgeFlowTest, AdminPreviewBridgeFlowTest, AdminSearchboxBridgeFlowTest for unified theme; added ViewBridgeSmokeTest cases for module/home page render; added AdminPageRenderFlowTest

  22. Config:
  23. config/global.php: sitekey rotated, active theme set to 'simple'

Benefits: - Page rendering fully managed by the Template class for all themes and contexts - setHead/setFoot no longer depend on index.php file or string-replace placeholders - All three render contexts (frontend, admin, exit) use the same engine

Technical notes: - index.php file is no longer read or parsed by setHead/setFoot - {%placeholder%} vars in theme index.php files are no longer used for page assembly

Refactor: complete migration to Template class and remove legacy template system
Автор: Eduard Laas | Дата: 12:33 24.03.2026

Drop core/template.php content and all setTemplate* functions; wire all remaining call sites to $tpl->getHtmlFrag(); extract visitor tracking from setHead() into three dedicated functions.

Core changes:

  1. Legacy template system (core/template.php, core/system.php):
  2. Emptied core/template.php — all setTemplate* functions removed
  3. Switched require from core/template.php to core/classes/template.php
  4. Replaced $GLOBALS['tpl'] with direct global $tpl in closures
  5. Renamed param $tpl to $frag in setPageNumbers() and num_ajax()
  6. Fixed uninitialized $barr in getBlocks()
  7. Visitor tracking extraction (core/system.php):
  8. Extracted session tracking into updateSessionTrack()
  9. Extracted referer tracking into updateRefererTrack()
  10. Extracted statistics tracking into updateStatsTrack()
  11. Theme template function refactor (templates/admin/index.php, templates/lite/index.php):
  12. setTemplateHead() replaced by getAdminHeadVars() / getThemeHeadVars() — returns array
  13. setTemplateFoot() replaced by getThemeFootVars() — returns array
  14. setTemplateBlock() removed from both template files
  15. Call site migration (core/admin.php, core/user.php, admin/index.php, index.php):
  16. All remaining setTemplateBlock() and setTemplateWarning() calls replaced with $tpl->getHtmlFrag()
  17. Tests cleanup (tests/):
  18. Removed TemplateBridgeFallbackTest, TemplateBridgeFlowTest, TemplateIfTest, TemplateTest
  19. Updated ViewTestBootstrap and TemplateValidationTest for new class path
  20. Misc (modules/main/index.php, templates/default/layouts/main.html):
  21. Fixed mojibake in Russian content strings to proper UTF-8
  22. Added templates/default/layouts/main.html as new default layout file

Benefits: - Single Template class is now the only rendering engine; old string-replace system removed - Visitor tracking isolated in named functions; setHead() reduced in scope - Theme functions return data arrays instead of rendered strings

Technical notes: - setTemplateBlock(), setTemplateWarning(), setTemplateBasic() no longer exist - storage/counter/ips.log removed from version control

Эта неделя (23.03.2026)
Docs: migrate order admin info to Markdown and update database docs
Автор: Eduard Laas | Дата: 15:32 23.03.2026

Core changes: - modules/order/admin/info/russian.html: removed (replaced by Markdown) - modules/order/admin/info/ru.md: new Markdown version of order admin docs - admin/info/database/ru.md: updated database admin documentation

Всего: 500 на 50 страницах по 10 на каждой странице

Хотите опробовать SLAED CMS в действии?

Технологии

PHPMySQLHTML 5CSS 3jQueryjQuery UI

Контакты

  • D-49179, Deutschland
    Ostercappeln, Im Siek 6
  • +49 176 61966679

  • https://slaed.net
Идеи и предложения
Обратная связь