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

changelog

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

Всего: 265 Коммитов в репозитории | Отфильтровано: 265 Коммиты | Страница: 1 / 27
Сегодня (25.02.2026)
Chore: Replace positional \$arg[N] placeholders with named tokens in basic.html
Автор: Eduard Laas | Дата: 15:40 25.02.2026
The admin basic item template used positional array references (\$arg[1]
through \$arg[10]) which were fragile and hard to read. Replaces them with
descriptive named tokens matching the keys passed by setTemplateBasic().

Core changes:

1. Placeholder rename (templates/admin/basic.html):
• \$arg[2] → {%id%}
• \$arg[3] → {%title%}
• \$arg[4] → {%text%}
• \$arg[5] → {%post%}
• \$arg[6] → {%date%}
• \$arg[7] → {%reads%}
• \$arg[8] → {%comm%}
• \$arg[9] → {%rating%}
• \$arg[10] → {%admin%}
• \$arg[1] → {%ctitle%}

Benefits:
• Template is self-documenting; field purpose visible without cross-referencing PHP
• Named tokens decouple template from positional argument order
• Consistent with the named-token convention used in other templates

Technical notes:
• Requires setTemplateBasic() callers to pass named-key arrays
• No HTML structure changed; layout identical
Refactor: Modernize sitemap public module
Автор: Eduard Laas | Дата: 15:40 25.02.2026
Converts the sitemap public module to current SLAED PHP conventions:
4-space indentation, single-quoted strings, void return type, SITEMAP_DIR
constant for file resolution, and updated template helpers.

Core changes:

1. Code style (modules/sitemap/index.php):
• Tabs → 4-space indentation throughout
• Double-quoted strings → single-quoted
• sitemap() → sitemap(): void

2. File path (modules/sitemap/index.php):
• Hardcoded 'config/sitemap/sitemap.txt' → SITEMAP_DIR.'/sitemap.txt'
* Resolves via constant, independent of working directory

3. Template helpers (modules/sitemap/index.php):
• tpl_eval('title', ...) → setTemplateBasic('title', ['title' => ...])
• tpl_eval('open/close') → setTemplateBasic('open/close')
• tpl_warn() → setTemplateWarning()

4. Switch style (modules/sitemap/index.php):
• Multiline switch/case → compact single-line form
• Removed closing ?>

Benefits:
• Consistent style with other modernized public modules
• File path resolved via constant rather than implicit cwd

Technical notes:
• Behavior unchanged; pure refactor
• Copyright year updated to 2026
Refactor: Modernize sitemap admin module
Автор: Eduard Laas | Дата: 15:40 25.02.2026
Cleans up the sitemap admin module: replaces $aroute with $afile, uses
the SITEMAP_DIR constant for file paths, adds a null-check for fopen(),
passes the $legacy parameter to getAdminTabs(), and guards
file_get_contents() with is_readable().

Core changes:

1. Global variable (modules/sitemap/admin/index.php):
• $aroute → $afile in all functions (sitemap, xsl, xslsave, conf, confsave)

2. File path hardening (modules/sitemap/admin/index.php):
• Hardcoded 'sitemap.xsl' → SITEMAP_DIR.'/sitemap.xsl'
• file_get_contents() → is_readable() guard before read
• fopen() now checked for false before entering while loop
* fclose() moved inside the if-block to prevent warning on null handle

3. Navigation fix (modules/sitemap/admin/index.php):
• $legacy parameter now forwarded correctly to getAdminTabs()

Benefits:
• Eliminates $aroute global; consistent with other modernized modules
• Prevents PHP warnings from fopen() failure on missing XML files
• File paths resolved via constant rather than implicit cwd

Technical notes:
• Behavior unchanged; pure refactor and hardening
• fopen() suppression (@) retained from original for non-critical read
Refactor: Modernize shop admin module
Автор: Eduard Laas | Дата: 15:39 25.02.2026
Rewrites the shop admin module with current SLAED conventions: short
op-aligned function names, $afile instead of $admin_file, inline
$conf['shop'] access instead of global $confs, and unified template API.

Core changes:

1. Navigation (modules/shop/admin/index.php):
• shop_navi() → navi() with typed int + string parameters

2. Function renames (modules/shop/admin/index.php):
• shop_clients() → clients()
• shop_clients_act() → clientsact()
• shop_clients_add() → clientsadd()
• shop_clients_save() → clientssave()
• shop_clients_delete() → clientsdel(int $id)
• shop_products() → products()
• shop_products_add() → productsadd()
• shop_products_save() → productssave()
• shop_products_admin() → productsadmin(int|array $id, string $vtyp)
• shop_partners() → partners()
• shop_partners_act() → partnersact()
• shop_partners_add() → partnersadd()
• shop_partners_save() → partnerssave()
• shop_partners_delete() → partnersdel(int $id)
• shop_partners_details() → partnersdetails()
• shop_export() → exportdata()
• shop_conf() → conf()
• shop_conf_save() → save()
• shop_info() → info()
• New: shop() — main listing function

3. Global variable cleanup (modules/shop/admin/index.php):
• $admin_file → $afile
• $confs → $conf['shop'] with null-coalesce defaults
• tpl_eval() → setTemplateBasic()
• while (list()) → while ([]) destructuring

Benefits:
• Eliminates deprecated $confs global and panel() call
• Consistent naming aligned with router op values
• Template API unified with other modernized modules

Technical notes:
• Behavior unchanged; pure refactor
• Copyright year updated to 2026
Fix: Correct adm_info() argument order in rss admin
Автор: Eduard Laas | Дата: 15:39 25.02.2026
The adm_info() call in info() was passing the numeric flag as the second
argument and the module name as the third. The function signature expects
(flag, module, ...) — swap restores correct info-panel rendering.

Core changes:

1. Argument order fix (modules/rss/admin/index.php):
• adm_info(1, 0, 'rss') → adm_info(1, 'rss', 0)
* Second arg is module name, third is language fallback flag

Benefits:
• Info panel now loads the correct rss module documentation
• Aligns with the adm_info() signature used in all other modules

Technical notes:
• Single-line change; no other logic affected
Refactor: Modernize pages admin module
Автор: Eduard Laas | Дата: 15:38 25.02.2026
Rewrites the pages admin module with current SLAED conventions: short
op-aligned function names, $afile instead of $admin_file, inline
$conf['pages'] access instead of global $confp, and unified template API.

Core changes:

1. Navigation (modules/pages/admin/index.php):
• page_navi() → navi() with typed int parameters
• Switched to getAdminTabs() + name=pages&op=... URL pattern

2. Function renames (modules/pages/admin/index.php):
• page() → pages() (matches module op)
• page_add() → add()
• page_save() → save()
• page_delete() → del(int $did)
• page_conf() → conf()
• page_conf_save() → confsave()
• page_info() → info()

3. Global variable cleanup (modules/pages/admin/index.php):
• $admin_file → $afile
• $confp → $conf['pages'] with null-coalesce defaults
• tpl_eval() → setTemplateBasic()
• tpl_warn() → setTemplateWarning()
• while (list()) → while ([]) destructuring

Benefits:
• Eliminates deprecated $confp global and panel() call
• Consistent naming aligned with router op values
• Template API unified with other modernized modules

Technical notes:
• Behavior unchanged; pure refactor
• Copyright year updated to 2026
Refactor: Modernize order admin module
Автор: Eduard Laas | Дата: 15:38 25.02.2026
Rewrites the order admin module with current SLAED conventions: short
op-aligned function names, $afile instead of $admin_file, inline
$conf['order'] access, and unified template API.

Core changes:

1. Navigation (modules/order/admin/index.php):
• order_navi() → navi() with typed int parameters
• Switched to getAdminTabs() + name=order&op=... URL pattern

2. Function renames (modules/order/admin/index.php):
• order_add() → add()
• order_save() → save()
• order_delete() → del(int $did)
• order_conf() → conf()
• order_conf_save() → confsave()
• order_info() → info()
• New: active() — toggles order entry active state

3. Global variable cleanup (modules/order/admin/index.php):
• $admin_file → $afile
• $confor → $conf['order'] with null-coalesce defaults
• tpl_eval() → setTemplateBasic()
• tpl_warn() → setTemplateWarning()
• while (list()) → while ([]) destructuring

Benefits:
• Eliminates deprecated $confor global and panel() call
• Consistent naming aligned with router op values
• Template API unified with other modernized modules

Technical notes:
• Behavior unchanged; pure refactor
• Copyright year updated to 2026
Refactor: Modernize news admin module
Автор: Eduard Laas | Дата: 15:38 25.02.2026
Rewrites the news admin module with current SLAED conventions: short
op-aligned function names, $afile instead of $admin_file, inline
$conf['news'] access instead of global $confn, and unified template API.

Core changes:

1. Navigation (modules/news/admin/index.php):
• news_navi() → navi() with typed int parameters
• Switched to getAdminTabs() + name=news&op=... URL pattern

2. Function renames (modules/news/admin/index.php):
• news_add() → add()
• news_save() → save()
• news_admin() → admin(int|array $ids, string $vtyp)
• news_conf() → conf()
• news_conf_save() → confsave()
• news_info() → info()

3. Global variable cleanup (modules/news/admin/index.php):
• $admin_file → $afile
• $confn → $conf['news'] with null-coalesce defaults
• tpl_eval() → setTemplateBasic()
• tpl_warn() → setTemplateWarning()
• while (list()) → while ([]) destructuring

Benefits:
• Eliminates deprecated $confn global and panel() call
• Consistent naming aligned with router op values
• Template API unified with other modernized modules

Technical notes:
• Behavior unchanged; pure refactor
• Copyright year updated to 2026
Refactor: Modernize money admin module
Автор: Eduard Laas | Дата: 15:37 25.02.2026
Rewrites the money admin module with current SLAED conventions: short
op-aligned function names, $afile instead of $admin_file, inline
$conf['money'] access, typed function signatures, and unified template API.

Core changes:

1. Navigation (modules/money/admin/index.php):
• money_navi() → navi() with typed int parameters
• Switched to getAdminTabs() + name=money&op=... URL pattern

2. Function renames (modules/money/admin/index.php):
• money_add() → add()
• money_save() → save()
• money_delete() → del(int $did)
• money_rechn() → rechn()
• money_conf() → conf()
• money_conf_save() → confsave()
• money_info() → info()
• billing() → billing() with typed parameters (string args)
• New: active() — toggles active/inactive state for money entries

3. Global variable cleanup (modules/money/admin/index.php):
• $admin_file → $afile
• $confmo → $conf['money'] with null-coalesce defaults
• tpl_eval() → setTemplateBasic()
• tpl_warn() → setTemplateWarning()
• while (list()) → while ([]) destructuring

Benefits:
• Eliminates deprecated $confmo global and panel() call
• Consistent naming aligned with router op values
• Template API unified with other modernized modules

Technical notes:
• Behavior unchanged; pure refactor
• Copyright year updated to 2026
Refactor: Modernize media admin module
Автор: Eduard Laas | Дата: 15:37 25.02.2026
Rewrites the media admin module with current SLAED conventions: short
op-aligned function names, $afile instead of $admin_file, inline
$conf['media'] access instead of global $confm, and unified template API.

Core changes:

1. Navigation (modules/media/admin/index.php):
• media_navi() → navi() with typed int parameters
• Switched to getAdminTabs() + name=media&op=... URL pattern

2. Function renames (modules/media/admin/index.php):
• media_add() → add()
• media_save() → save()
• media_delete() → del(int $did)
• media_conf() → conf()
• media_conf_save() → confsave()
• media_info() → info()
• New: ignore() — marks pending media entry as approved (status=1)

3. Global variable cleanup (modules/media/admin/index.php):
• $admin_file → $afile
• $confm → $conf['media'] with null-coalesce defaults
• tpl_eval() → setTemplateBasic()
• tpl_warn() → setTemplateWarning()
• while (list()) → while ([]) destructuring

Benefits:
• Eliminates deprecated $confm global and panel() call
• Consistent naming aligned with router op values
• Template API unified with other modernized modules

Technical notes:
• Behavior unchanged; pure refactor
• Copyright year updated to 2026

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

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

Технологии

PHPMySQLHTML 5CSS 3jQueryjQuery UI

Контакты

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

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