Libraries tagged by util
mouf/utils.log.log_interface
183657 Downloads
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)
mouf/utils.log.errorlog_logger
183616 Downloads
This package contains a logger that logs messages directly to the PHP error log (using the error_log PHP function)
mouf/utils.i18n.fine
170401 Downloads
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 messages.
mouf/utils.constants.secret
374775 Downloads
This package contains a simple installer for Mouf that will create a constant 'SECRET' in your project and initialize it to some random value.
mouf/utils.constants.debug
362374 Downloads
This package contains a simple installer for Mouf that will create a constant 'DEBUG' in your project and initialize it to true. Useful for packages supporting a 'debug' mode.
mouf/utils.composite-exception
249981 Downloads
This project contains a simple PHP exception that can aggregate multiple exceptions in one.
mouf/utils.common.url-interface
354291 Downloads
This package contains an interface used by many objects to say they represent a URL. The concept is very simple, the object implements a getUrl method, and that's it!
mouf/utils.common.lock
67227 Downloads
A simple package that provides functions to get a lock. Typically, you want to use locks when you want to be sure that 2 actions do not happen at the same time. For instance, if you regularly schedule cron tasks, you might want to be sure the last cron task finished before running the new one. A lock can help you do that.
mouf/utils.common.getvars
163351 Downloads
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 the effect of the dreadful 'magic_quotes' parameter.
mouf/utils.common.doctrine-cache-wrapper
97943 Downloads
Provide an install script for a Doctrine's Cache in Mouf Framework.
mouf/utils.common.doctrine-annotations-wrapper
89112 Downloads
Provide an install script for a Doctrine's AnnotationReader in Mouf Framework.
mouf/utils.cache.purge-ui
185499 Downloads
This package contains a user interface that will add a 'Purge cache' button to Mouf, allowing you to purge any PSR-6, PSR-16, Doctrine and Mouf cache easily.
mouf/utils.cache.no-cache
180765 Downloads
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...).
mouf/utils.cache.in-memory-cache
356810 Downloads
This package contains the most basic cache mechanism. It stores cache items in an array. It means the cache is flushed as soon as the script returns. It is very basic, but also very fast. You will usually use this mechanism with another one just behind.
mouf/utils.cache.file-cache
375737 Downloads
This package contains a cache mechanism that relies on temporary files.