News Management¶
Navigate to Hírek via /Club/News.
Overview¶
The news system lets club managers publish announcements that appear to customers after login. News items can be time-limited and tracked for read acknowledgment.
Data Model¶
News Table¶
| Column | Type | Description |
|---|---|---|
| Title | nvarchar | Headline displayed to customers |
| Content | nvarchar(max) | Body text — HTML or rich text |
| Size | char(1) | Display size code |
| Type | varchar(10) | News type classification |
| IsPlainHTML | bit | 1 = raw HTML, 0 = rich text |
| BeginningDate | datetime | Start of visibility window |
| EndDate | datetime | End of visibility window |
| DisplayTime | int | How long the popup stays visible |
| PublishCount | int | Number of times the news was pushed |
| IsActive | bit | Master on/off switch |
UserNews Table¶
Tracks which users have seen or acknowledged each news item, preventing repeated popups for the same content.
Content Formats¶
HTML vs Rich Text
Set IsPlainHTML (Egyszerű HTML) to 1 to use raw HTML markup directly. When set to 0, the built-in rich text editor is used for content authoring.
Scheduling¶
News visibility is controlled by a date range:
- BeginningDate (Kezdő dátum) — the news becomes visible from this date.
- EndDate (Befejező dátum) — the news is hidden after this date.
- IsActive (Aktív) — overrides the date range; when disabled, the news is never shown.
Display Behavior¶
After a customer logs in, any active and unacknowledged news items appear as popups. The DisplayTime (Megjelenítési idő) setting controls how long the popup remains on screen before auto-closing.
PublishCount (Közzétételi szám) records how many times the news was actively pushed to the customer base.
Demo environment
The demo site has 1 news item configured for reference.