दस्तावेज़ीकरण अभी केवल अंग्रेज़ी है। बाकी साइट आपकी भाषा का अनुसरण करती है।
Glossary
Plain-English definitions for Justflows terms used across these docs.
4 मिनट पढ़ा
- Action
- A hook that runs after something succeeded. It cannot cancel the operation.
- Admin app (plugin)
- A plugin's self-contained HTML build, declared as
adminAppand mounted in a same-origin<iframe>inside the admin shell; it talks to the host only overpostMessagevia@justflows/admin-bridge. - Asset bundle (plugin)
- One content-hashed
/jf-plugins.<hash>.js/.cssfile the host builds by concatenating every active plugin'smanifest.assetsscripts and styles, added to every public page. - Audit log
- Persisted record of security-sensitive admin actions (sign-in, 2FA, package installs, updates, …) under Admin → Security → Audit log.
- Block document
- JSON
{ version, blocks }stored on a post or page and edited in the builder. - Block pattern
- A reusable, validated block tree in the editor's pattern library — a section starter or a whole-page design. Shipped by a theme, contributed by a plugin with
ctx.patterns.register(), or saved locally; non-core blocks it uses are listed inrequiresBlockTypes. - Capability
- A named thing a user role may do (
content:publish,plugins:install, …). Roles can be built-in or custom, and a grant can be scoped by content type, locale, site, or ownership. - Consent record
- A versioned row the Cookie Consent plugin stores for a visitor's choices — policy hash, timestamp, categories, locale, coarse device — exportable as CSV and erasable per record.
- Content type
- A registered slug (
post,page, or a custom type) with optional field definitions, persisted incontent_types. - Correlation ID
- The
X-Request-Idvalue on every HTTP response. Quote it when reporting a failing request; its trace is in Admin → System → Diagnostics. - CSS provider
- A framework CSS package (Bootstrap, Pico, none, …) activated under Design.
- Custom role
- A site-local role an administrator defines with a capability editor, in addition to the five built-in roles.
- Envelope sender
- The return-path address used for bounce handling on outgoing mail, set under Settings → Outgoing mail, independent of From and Reply-To.
- Filter
- A hook that receives a value and must return the next value.
- Gate
- A hook that runs before commit and may
cancel(reason). Fail closed. - jf-cache
- Built-in object cache (memory or filesystem) with
rememberand prefix invalidation. A Redis adapter is reserved but not implemented. - License (core)
- Community Edition (
justflows-ce) is MIT. Preserve the copyright notice when you distribute Core. - License (plugin/theme)
- Each extension declares its own SPDX license. Installed packages and Marketplace listings must be GPL-compatible (GPL, MIT, BSD, ISC, …).
- A menu layout whose top-level items open a full-width panel of multi-column regions. Region content is authored as blocks and sanitized on write against a fixed safe-block allowlist (no
core.html/core.code/core.embed). - The visual Admin → Menus editor: a drag-and-drop item tree, layout and mobile-collapse presets, per-item styling, server-side visibility rules, and a live
?preview=1iframe. Edits autosave to a draft and are promoted by Publish. - Permalink structure
- The configured pattern for public content URLs — a preset such as
/%postname%/or a custom token structure, with per-type and taxonomy bases and a trailing-slash policy. Changing it 301s previously published URLs to the new ones. - Permission (plugin)
- A named thing a plugin declares in its manifest in order to use sensitive hooks or APIs.
- Public API
/api/v1(content, content-types, media, menus, openapi.json) and/api/site, anonymous when enabled. Not the session admin API.- Redirect manager
- Admin → System → Redirects: exact, prefix, and restricted-regex redirects to internal, content, or external destinations, with CSV import/export, permalink-history suggestions, and aggregate public 404 reporting. A server runtime feature; static exports do not reproduce it.
- Scope (access)
- A limit attached to a capability grant — by content type, locale, site, or ownership — so a user can hold a capability for only part of the site.
- SDK
@justflows/sdk— the only package plugin authors should import for types and contracts.- SEO
- Built-in public-page tags,
/sitemap.xml, and/robots.txt. Per-page fields live on the content row; site-wide defaults can be stored by the SEO Toolkit plugin. - Static export
- A generated folder of files — every published page, asset, locale, sitemap, and the built
/theme.css, plus asha256manifest and_headers— that you serve from object storage or a CDN with no Node origin. An artifact you produce, not a running service. See Static / edge export. - Template part
- A shared chrome document (header, footer, …) stored per site in
template_partsand pulled into a template with thecore.template-partblock. - Template slot
- A named position in a theme's template hierarchy (
index,front-page,single,page,404, …); the renderer uses the most specific slot file that exists. - TOTP
- Time-based one-time password (RFC 6238) used for optional two-factor authentication on admin sign-in.
- Trash
- A site-scoped recycle bin. Deleted content, media, comments, and menus stay recoverable until restored or purged by the retention job.
- Under construction
- Anonymous view when
site_publicis false. Admins and editors still see the real site. - WXR
- WordPress eXtended RSS — the XML export Justflows imports under Tools.