Classes, interfaces and traits
ArrayUtils¶
Utilities to perform common array operations
« More »
BaseDependantClass¶
A base class that implements easy dependency injection management
« More »
BaseSingletonClass¶
A base class that implements the singleton pattern for PHP and can be extended to convert a class to a singleton object
« More »
BaseStrictClass¶
A base class that can be extended to protect created objects from access/read to undefined properties, and all other defensive OOP best practices
« More »
BrowserManager¶
An abstraction of the browser entity an all its related operations and properties
Browser entity is normally available only on client side or front end view applications,
but some of its features can also make sense on a server side app. So depending on the
implementation language, this class may or may not have some of its methods implemented.
« More »
ConversionUtils¶
The most common conversion utilities to change the data from a simple type to another one.
To convert complex classes or structures, use SerializationUtils class.
« More »
DateTimeObject¶
date and time format object abstraction based on ISO 8601 standard
« More »
EncodingUtils¶
Utilities related to string and text character encoding,
converting between formats, and perform common encoding operations.
« More »
HashMapObject¶
HashMapObject abstraction
« More »
HTTPManager¶
Class that contains functionalities related to the HTTP protocol and its most common requests
« More »
HTTPManagerGetRequest¶
Class that defines a GET http request, to be used by HttpManager
« More »
HTTPManagerPostRequest¶
Class that defines a POST http request, to be used by HttpManager
« More »
JavaPropertiesObject¶
Object that stores java properties file format data
« More »
LocalizationManager¶
Fully featured translation manager to be used with any application that requires text internationalization.
« More »
NumericUtils¶
Common operations and tools related with numbers
« More »
StringUtils¶
The most common string processing and modification utilities
« More »
TextTemplateObject¶
Text template abstraction
« More »
ValidationManager¶
Class that allows us to manage application validation in an encapsulated way.
We can create as many instances as we want, and each instance will store the validation history and global validation state,
so we can use this class to validate complex forms or multiple elements globally.
We can also use tags to sandbox different validation elements or groups togheter.
« More »