mouf/utils.session.session-manager
This package is used to manage sessions. It provides a DefaultSessionManager class that you can use to configure your PHP sessions, and a SessionManagerInterface that you can implement if you want to provide your own session management.
时间:2012-12-07 14:36
mouf/utils.common.validators
This package contains typical validators to be used in your application. A validator is a class that decides whether a string is valid or not. For instance, you could use an EmailValidator to validate that a string is a mail, etc...
时间:2012-11-23 13:28
mouf/html.utils.bootstrap
This package contains an installer for the Bootstrap HTML/CSS/JS library in the Mouf framework to add Bootstrap easily in your Mouf project.
时间:2012-10-17 19:41
mouf/utils.log.errorlog_logger
This package contains a logger that logs messages directly to the PHP error log (using the error_log PHP function)
时间:2012-10-16 15:02
mouf/utils.cache.cache-interface
This package only contains the interface that must be implemented by caching classes. Unless you want to implement your own caching method, you should import a cache package that will use this interface. For instance, common.utils.session-cache, or common.utils.file-cache.
时间:2012-10-16 14:52
mouf/utils.cache.apc-cache
This package contains a cache mechanism that relies on the APC caching system. For this cache to work, the APC Pecl package must be enabled.
时间:2012-10-16 14:52
mouf/utils.cache.file-cache
This package contains a cache mechanism that relies on temporary files.
时间:2012-10-16 14:52
mouf/utils.cache.no-cache
This package contains a cache mechanism that... does not cache anything. This is useful if another component requires a cache mechanism and if you don't want to provide any (for development purpose...).
时间:2012-10-16 14:49
mouf/utils.common.getvars
This is a legacy non-OO package and should not be used in recent developments. A simple package that provides functions to get the parameters from the request in a consistent way. The varaiables can be rerieved in a way that is independent of the php.ini configuration file. Especially, it can cancel
时间:2012-10-16 14:43
mouf/html.utils.weblibrarymanager
The Javascript/CSS library manager is a PHP class in charge of keeping track of the JS and CSS files that have been included so far in a web page. Basically, you tell the Javascript/CSS library manager to import a JS/CSS file and it will make sure it is included, only once, and that all dependencies
时间:2012-10-16 14:26
mouf/utils.i18n.fine
Fine is a PHP internationalisation package. It will help you provide applications that support several languages. FINE means: Fine is not english :). Translation is performed using PHP mapping files, but you will have a nice graphical interface in the Mouf framework to write your own translated mess
时间:2012-10-16 14:16
mouf/utils.log.log_interface
This package contains an interface used by many components to log messages. Please download a logger package that implements this interface (like the utils.log.errorlog_logger package)
时间:2012-06-20 20:52
mouf/utils.log.psr.multi-logger
This package contains a PSR-3 compatible logger that wrap a set of loggers
时间:未知