Skip to content

Commit f5fa52f

Browse files
authored
Merge pull request #8 from mambax7/master
version updates, cosmetics
2 parents 009c6ef + d9edcad commit f5fa52f

48 files changed

Lines changed: 95 additions & 201 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

apps/docs-27/astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ export default defineConfig({
388388
{
389389
label: 'Migration',
390390
items: [
391-
{ slug: 'migration/from-2-6' },
391+
{ slug: 'migration/from-2-5' },
392392
],
393393
},
394394

apps/docs-27/src/content/docs/contributing/adrs/adr-006.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description: "Architecture Decision Record for fine-grained module permission co
1111

1212
## Status
1313

14-
**Accepted** - Implemented in XOOPS 2.5.x and extended in 2026
14+
**Accepted** - Implemented in XOOPS 2.5.x and extended in XOOPS 4.0
1515

1616
---
1717

apps/docs-27/src/content/docs/contributing/guidelines/issue-reporting.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ What actually happens.
100100

101101
## Environment
102102
- XOOPS Version: X.Y.Z
103-
- PHP Version: 7.4/8.0/8.1
103+
- PHP Version: 8.2/8.3/8.4
104104
- Database: MySQL/MariaDB version
105105
- Operating System: Windows/macOS/Linux
106106
- Browser: Chrome/Firefox/Safari
@@ -278,7 +278,7 @@ Environment:
278278
✅ Add two-factor authentication support
279279
✅ Form validation not preventing SQL injection in name field
280280
✅ Improve performance of user list query
281-
✅ Update installation documentation for PHP 8.1
281+
✅ Update installation documentation for PHP 8.2
282282
```
283283

284284
### Poor Titles
@@ -418,7 +418,7 @@ Error: "SQL Error - Unknown column 'deleted_at' in ON clause"
418418

419419
## Environment
420420
- XOOPS Version: 2.7.0
421-
- PHP Version: 8.1.5
421+
- PHP Version: 8.2.0
422422
- Database: MySQL 8.0.32 with STRICT_TRANS_TABLES
423423
- Operating System: Ubuntu 22.04
424424
- Browser: Firefox 120

apps/docs-27/src/content/docs/core-concepts/database/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description: "Comprehensive guide to XOOPS database abstraction, XoopsObject, ha
1010
> Understanding XOOPS database abstraction, object persistence, and query building.
1111
1212
:::tip[Future-Proof Your Data Access]
13-
The handler/Criteria pattern works in both versions. To prepare for 2026, consider wrapping handlers in [Repository classes](../../03-Module-Development/Patterns/Repository-Pattern.md) for better testability. See [Choosing a Data Access Pattern](../../03-Module-Development/Choosing-Data-Access-Pattern.md).
13+
The handler/Criteria pattern works in both versions. To prepare for XOOPS 4.0, consider wrapping handlers in [Repository classes](../../03-Module-Development/Patterns/Repository-Pattern.md) for better testability. See [Choosing a Data Access Pattern](../../03-Module-Development/Choosing-Data-Access-Pattern.md).
1414
:::
1515

1616
---

apps/docs-27/src/content/docs/core-concepts/dependency-injection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ title: "Dependency Injection in XOOPS"
77
|---------|-------------|------------|
88
| Manual DI (constructor injection) | ✅ Available | ✅ Available |
99
| PSR-11 Container | ❌ Not built-in | ✅ Native support |
10-
| `\Xmf\Module\Helper::getContainer()` |2026 only | ✅ Available |
10+
| `\Xmf\Module\Helper::getContainer()` |4.0 only | ✅ Available |
1111

1212
In **XOOPS 2.5.x**, use manual constructor injection (passing dependencies explicitly). The PSR-11 container examples below are for **XOOPS 4.0**.
1313
:::

apps/docs-27/src/content/docs/core-concepts/event-system.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See [Choosing an Event System](Choosing-Event-System.md) for a decision tree wit
1414
| **Preload System** | ✅ XOOPS 2.5.x (current) | Hook into core events via `class/Preload.php` |
1515
| **PSR-14 Event Dispatcher** | 🚧 XOOPS 4.0 (future) | Modern event dispatching with typed events |
1616

17-
**For XOOPS 2.5.x modules**, use the [Preload System](#preload-system-legacy) section below. The PSR-14 section is for future 2026 development.
17+
**For XOOPS 2.5.x modules**, use the [Preload System](#preload-system-legacy) section below. The PSR-14 section is for XOOPS 4.0 development.
1818
:::
1919

2020
## Overview

apps/docs-27/src/content/docs/getting-started/configure-email.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Configure Emai​l"
2+
title: "Configure Email"
33
---
44

55
![XOOPS Email Configuration](/xoops-docs/2.7/img/installation/xoops-04-email-setup.png)

apps/docs-27/src/content/docs/installation.md

Lines changed: 0 additions & 91 deletions
This file was deleted.

apps/docs-27/src/content/docs/installation/requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Requirements"
2+
title: "Requirements"
33
---
44

55
## Software Environment (the Stack)

apps/docs-27/src/content/docs/installation/upgrade/step-01.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Preparations for Upgrade"
2+
title: "Preparations for Upgrade"
33
---
44

55
## Turn Site Off

0 commit comments

Comments
 (0)