Skip to content
Snippets Groups Projects
Commit e597de02 authored by Patrick Barroca's avatar Patrick Barroca :grin:
Browse files

version 7.3.0

Merge remote-tracking branch 'refs/remotes/afi/stable' into afi-master

# Conflicts:
#	VERSIONS
parents a968be33 b4117ca3
2 merge requests!1132Hotline#29412 images des articles dans le resultat de recherche,!1013Master
20/07/2015 - v7.3.0
- ticket #24821: notification de l'abonné à la connexion sur l'expiration de son abonnement, les prêts en retard et les réservations en attente de retrait
- ticket #23805: possibilité de ne pas limiter le nombre de facettes affichés par rubrique
10/07/2015 - v7.2.4
- ticket #23606 : amélioration de l'affichage dans la version mobile de Bokeh en évitant de tronquer les contenus.
......
# ticket #24821
## Notifications
In controllers, notifcations can be rendered as popup instead of static bars:
```php
$this->getHelper('notify')->bePopup()
```
_ZendAfi\_Controller\_Action\_Helper\_FlashMessenger_ notifications now stored as array and can accept parameters:
```php
public function addNotification($message, $options = []) {
$params = ['message' => $message] + $options;
$this->addMessage([ZendAfi_Controller_Action_Helper_FlashMessenger::NOTIFICATION => $params]);
}
```
and _FlashMessengerNotification_ represent a notification. For example to get all popups notifications:
```php
(new ZendAfi_Controller_Action_Helper_FlashMessenger())
->getNotifications()
->select(function($n) {return $n->isPopup();});
```
Users ILS subscription ('abonnement') related functions moved to new _Class\_User\_ILSSubscription_.
See _Class\_Users>>registerNotificationsOn_ for notifications usage.
## ILS Web services
Add _Class\_WebService\_SIGB\_Reservation>>isWaitingToBePulled_ that returns _true_ when holded document is available in library. Works for: Nanook, Koha, Microbib, Aloes, Carthame, Orphée, Pergame.
......@@ -63,8 +63,8 @@ function defineConstant($name, $value) {
function setupConstants() {
defineConstant('BOKEH_MAJOR_VERSION','7.2');
defineConstant('BOKEH_RELEASE_NUMBER', BOKEH_MAJOR_VERSION . '.4');
defineConstant('BOKEH_MAJOR_VERSION','7.3');
defineConstant('BOKEH_RELEASE_NUMBER', BOKEH_MAJOR_VERSION . '.0');
defineConstant('ROOT_PATH', realpath(dirname(__FILE__).'/..').'/');
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment