horde / core
Core Horde Framework library
Installs: 766
Dependents: 29
Suggesters: 2
Security: 0
Stars: 6
Watchers: 6
Forks: 15
Language:JavaScript
Type:horde-library
Requires
- php: ^7.4 || ^8
- ext-session: *
- horde/alarm: ^3
- horde/auth: ^3
- horde/autoloader: ^3
- horde/browser: ^3
- horde/cache: ^3
- horde/cli: ^3
- horde/compress: ^3
- horde/compress_fast: ^2
- horde/controller: ^3
- horde/cssminify: ^2
- horde/data: ^3
- horde/date: ^3
- horde/exception: ^3
- horde/group: ^3
- horde/hashtable: ^2
- horde/history: ^3
- horde/horde-installer-plugin: ^2
- horde/http: ^3
- horde/http_server: ^1
- horde/injector: ^3
- horde/javascriptminify: ^2
- horde/lock: ^3
- horde/log: ^3
- horde/logintasks: ^3
- horde/mime: ^3
- horde/mime_viewer: ^3
- horde/notification: ^3
- horde/pack: ^2
- horde/perms: ^3
- horde/prefs: ^3
- horde/secret: ^3
- horde/serialize: ^3
- horde/sessionhandler: ^3
- horde/share: ^3
- horde/support: ^3
- horde/template: ^3
- horde/text_filter: ^3
- horde/token: ^3
- horde/translation: ^3
- horde/url: ^3
- horde/util: ^3
- horde/view: ^3
- pear/pear: *
Requires (Dev)
- horde/prefs: ^3
- horde/routes: ^3
- horde/test: ^3
- horde/tree: ^3
- horde/vfs: ^3
Suggests
- ext-SimpleXML: *
- ext-dom: *
- ext-hash: *
- ext-sockets: *
- pear/text_captcha: *
- pear/text_figlet: *
- dev-FRAMEWORK_6_0
- v3.0.0alpha16
- v3.0.0alpha15
- v3.0.0alpha14
- v3.0.0alpha13
- v3.0.0alpha12
- v3.0.0alpha11
- v3.0.0alpha10
- v3.0.0alpha9
- v3.0.0alpha8
- v3.0.0alpha7
- v3.0.0alpha6
- v3.0.0alpha5
- v3.0.0alpha4
- 3.0.0alpha3
- 3.0.0alpha2
- 3.0.0alpha1
- 2.31.18
- 2.31.17
- 2.31.16
- 2.31.15
- 2.31.14
- 2.31.12
- 2.31.11
- 2.31.10
- 2.31.9
- 2.31.8
- 2.31.7
- 2.31.6
- 2.31.5
- 2.31.4
- 2.31.3
- 2.31.2
- 2.31.1
- 2.31.0
- 2.30.2
- 2.30.1
- 2.30.0
- 2.29.1
- 2.29.0
- 2.28.3
- 2.28.2
- 2.28.1
- 2.28.0
- 2.27.8
- 2.27.7
- 2.27.6
- 2.27.5
- 2.27.4
- 2.27.3
- 2.27.2
- 2.27.1
- 2.27.0
- 2.26.1
- 2.26.0
- 2.25.0
- 2.24.0
- 2.23.0
- 2.22.7
- 2.22.6
- 2.22.5
- 2.22.4
- 2.22.3
- 2.22.2
- 2.22.1
- 2.22.0
- 2.21.0
- 2.20.9
- 2.20.8
- 2.20.7
- 2.20.6
- dev-TDannhauer-Unset-HTTP-Referer-when-following-external-links
- dev-TDannhauer-composer-based-versionChecking
- dev-FRAMEWORK_5_2
- dev-master
This package is auto-updated.
Last update: 2025-04-21 02:12:30 UTC
README
AI generated on 2025 april 20th.
The Horde Core package provides essential functionality for the Horde Framework, serving as the foundation for all Horde applications. It includes core services, base classes, and fundamental infrastructure components required by the Horde ecosystem.
Key Features
- Application Registry and Management
- Authentication Framework
- Permission System
- Session Management
- Configuration Management
- Internationalization (i18n) Support
- Theme Management
- Core Utility Classes
- Basic Security Services
Registry System
The Registry system is a central component of Horde Core that manages application registration, configuration, and inter-application communication. It consists of several key components:
Core Registry (Horde_Registry
)
- Handles application registration and management
- Manages application initialization and lifecycle
- Controls authentication settings
- Provides session flag management
- Defines error codes and view types
- Facilitates inter-application communication
Registry API (Horde_Registry_Api
)
- Manages API interfaces between applications
- Handles disabled methods and caching
- Controls API permissions
- Manages application links and relationships
Registry Configuration (Horde_Registry_Registryconfig
)
- Parses and manages registry configuration files
- Supports multiple configuration sources:
- Main registry file (
registry.php
) - Registry directory files (
registry.d/*.php
) - Local registry file (
registry.local.php
) - Virtual host configurations
- Main registry file (
- Sets up application paths and resources
- Manages application status and interfaces
- Configures template, JavaScript, and theme paths
- Auto-detects Horde webroot
NLS Configuration (Horde_Registry_Nlsconfig
)
- Manages language and character set configurations
- Handles:
- Character set mappings
- Language aliases
- Email character sets
- RTL (Right-to-Left) language support
- Multi-byte character support
- Language validation
The registry system's modular design allows for:
- Flexible application registration
- Centralized configuration management
- Comprehensive language support
- Extensible API system
- Virtual host support
- Clear separation of concerns
Installation
composer require horde/core
Configuration
The core package requires proper configuration of the registry system. Main configuration files should be placed in:
config/registry.php
(main configuration)config/registry.d/*.php
(additional configurations)config/registry.local.php
(local overrides)
Requirements
- PHP 7.0 or later
- Horde Framework dependencies
- Composer for package management
License
This package is released under the LGPL-2.1 license. See LICENSE file for details.