mouf member since: Jun 20, 2012
mouf's packages
-
PHP
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...).
-
PHP
mouf/utils.cache.purge-ui
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.
-
PHP
mouf/utils.cache.redis-cache
This package contains a cache mechanism that uses Redis to cache data.
-
PHP
mouf/utils.cache.session-cache
This package contains a cache mechanism that relies on the session of the user. Therefore, the cache is a bit special, since it is kept for the duration of the session, and is only accessible by the current user. The session has to be started (using session_start()).
-
PHP
mouf/utils.common.conditioninterface
This package contains one interface for condition, and a few classes that implement it. For instance, AndCondition that requires all conditions to be met, and OrCondition that requires at least one condition to be met. A condition is a class that possesses an 'isOk' method. The condition returns true if the condition is met, and false otherwise.
-
PHP
mouf/utils.common.doctrine-annotations-wrapper
Provide an install script for a Doctrine's AnnotationReader in Mouf Framework.
-
PHP
mouf/utils.common.doctrine-cache-wrapper
Provide an install script for a Doctrine's Cache in Mouf Framework.
-
PHP
mouf/utils.common.formatters
Formatters are simple classes that transform a string into another. For instance, a formatter could be used to format a date, translate a string, put a string in bold, etc... This package contains the formatter interface, plus a number of useful formatters.
-
PHP
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 the effect of the dreadful 'magic_quotes' parameter.
-
PHP
mouf/utils.common.lock
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.
-
PHP
mouf/utils.common.mouf-helpers
This package contains a set of utility classes that will help you build UI for Mouf. This is mostly useful for package builders if they want to provide advanced UI, etc....
-
PHP
mouf/utils.common.paginable-interface
This package contains an interface used by objects to say they can paginate data. The concept is very simple, the object implements a paginate method that takes a limit and an offset, and that's it!
-
PHP
mouf/utils.common.sortable-interface
This package contains an interface used by objects to say they can sort data. The concept is very simple, the object implements a sort method that takes a key (the sort column) and a direction, and that's it!
-
PHP
mouf/utils.common.symfony-validator-wrapper
Provide an install script for a Doctrine's AnnotationReader in Mouf Framework.
-
PHP
mouf/utils.common.url-interface
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!