Libraries tagged by mouf
mouf/utils.session.session-manager
250991 Downloads
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.
mouf/utils.constants.secret
372101 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
359704 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.common.url-interface
351699 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.sortable-interface
204408 Downloads
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!
mouf/utils.common.paginable-interface
204416 Downloads
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!
mouf/utils.cache.in-memory-cache
354153 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
373065 Downloads
This package contains a cache mechanism that relies on temporary files.
mouf/utils.cache.cache-interface
373617 Downloads
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.
mouf/utils.cache.apc-cache
372570 Downloads
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.
mouf/utils.action.common-action
351762 Downloads
This package contains common classes that implement the ActionInterface interface (from the mouf/utils.action.action-interface package).
mouf/utils.action.action-interface
363204 Downloads
This package contains an interface used by many objects to say they can do stuff. Actually, they can perform one particular action and has been designed for that. The action performed is completely up to the implementer (sending a mail, storing a result in database, displaying something on the screen...) The concept is very simple, and very powerful at the same time.
mouf/mvc.splash-common
354560 Downloads
Splash is a PHP router. It takes an HTTP request and dispatches it to the appropriate controller.
mouf/mvc.splash
235615 Downloads
Integration of Splash with the Mouf framework.
mouf/html.widgets.messageservice
237026 Downloads
Use this package to display info/warning/error messages to the user on a web page. Using the SessionMessageService class, you register messages to be displayed. Using the MessageWidget class, you display the error messages in your templates.