diff --git a/VERSIONS_HOTLINE/141251 b/VERSIONS_HOTLINE/141251 new file mode 100644 index 0000000000000000000000000000000000000000..8d011b420e0d7a89fa07e8e87c31fca4a5a4b8c2 --- /dev/null +++ b/VERSIONS_HOTLINE/141251 @@ -0,0 +1 @@ + - ticket #141251 : Administration : correction du nettoyage des données corrompues dans les profils. \ No newline at end of file diff --git a/application/modules/admin/controllers/SitoController.php b/application/modules/admin/controllers/SitoController.php index 7f2ccefeb81339954b077a4434f3ec4f2f815f76..2cb19bedccf36a91eb28be50cde871c7e220d150 100644 --- a/application/modules/admin/controllers/SitoController.php +++ b/application/modules/admin/controllers/SitoController.php @@ -33,7 +33,10 @@ class Admin_SitoController extends ZendAfi_Controller_Action { $this->_setParam('id_cat',$site->getCategorie()->getId()); } - $identity = Class_Users::getLoader()->getIdentity(); + if ( ! $identity = Class_Users::getLoader()->getIdentity()) { + $this->_bib = Class_Bib::getLoader()->getPortail(); + return; + } if (ZendAfi_Acl_AdminControllerRoles::ADMIN_BIB >= $identity->getRoleLevel()) { $this->_bib = $identity->getBib(); diff --git a/cosmogramme/sql/patch/patch_417.php b/cosmogramme/sql/patch/patch_417.php index d3b2cc80ffa1f05ac845f0d2ab8fb071a6567ba9..757983b898359ec65a5a9cd897ad326a0fec8714 100644 --- a/cosmogramme/sql/patch/patch_417.php +++ b/cosmogramme/sql/patch/patch_417.php @@ -1,2 +1,3 @@ <?php +//hash should change (new Class_Migration_CleanProfileCfgModules)->run(); diff --git a/library/Class/CasTicketV3.php b/library/Class/CasTicketV3.php index f06a5986d9f6cd2484a4f947621a3c164b5398cc..c8adbfd470eea5170338be9bbe71fd57e528f557 100644 --- a/library/Class/CasTicketV3.php +++ b/library/Class/CasTicketV3.php @@ -113,7 +113,6 @@ class CasTicketV3Cache { public function isExpired($date) { - xdebug_break(); return $this->_expired_at < $date; } } diff --git a/library/Class/Migration/CleanProfileCfgModules.php b/library/Class/Migration/CleanProfileCfgModules.php index 449904067ca71c052c8f33d8881e1a2badf6fa8b..9d39f83637b746377bfd027bd21823da72e0b0bd 100644 --- a/library/Class/Migration/CleanProfileCfgModules.php +++ b/library/Class/Migration/CleanProfileCfgModules.php @@ -24,43 +24,17 @@ class Class_Migration_CleanProfileCfgModules { use Trait_MemoryCleaner; protected - $_request, - $_dispatcher; - - - public function __construct() { - $this->_request = (new Zend_Controller_Request_Http) - ->setModuleName('opac'); - - $front_controller = - Zend_Controller_Front::getInstance() - ->setRequest($this->_request) - ->throwExceptions(true) - ->returnResponse(false); - - $this->_dispatcher = $front_controller->getDispatcher(); - - if ( $this->_dispatcher->isValidModule('opac')) - return; - - (new Bokeh_Engine) - ->warmUp() - ->setupControllerActionHelper() - ->setupFrontController(); - - $front_controller = - Zend_Controller_Front::getInstance() - ->setRequest($this->_request) - ->throwExceptions(true) - ->returnResponse(false); - - $this->_dispatcher = $front_controller->getDispatcher(); - } + $_modules = ['opac', + 'admin', + 'telephone', + 'activitypub', + 'push', + 'api']; public function run() { $i = 1; - while($page = Class_Profil::findAllBy(['limitPage' => [$i, 100]])) { + while($page = Class_Profil::findAllBy(['limitPage' => [$i, 50]])) { $this->_runPage($page); $i++; } @@ -102,31 +76,92 @@ class Class_Migration_CleanProfileCfgModules { protected function _controllerExists($controller) { - $this->_request + foreach ($this->_modules as $module) + if ($this->_controllerExistsInModule($controller, $module)) + return true; + + return false; + } + + + protected function _controllerExistsInModule($controller, $module) { + $dispatcher = ($this->_getDispatcherFor($module)); + return $dispatcher->isDispatchable($this->_getRequestFor($module, $controller)); + } + + + protected function _getDispatcherFor($module) { + return Zend_Controller_Front::getInstance() + ->setRequest((new Zend_Controller_Request_Http)->setModuleName($module)) + ->throwExceptions(true) + ->returnResponse(false) + ->getDispatcher(); + } + + + protected function _getRequestFor($module, $controller, $action = '') { + $request = (new Zend_Controller_Request_Http) + ->setModuleName($module) ->setControllerName($controller); - return $this->_dispatcher->isDispatchable($this->_request); + if ($action) + $request->setActionName($action); + + return $request; } protected function _filterByActions($modules, $controller, $actions) { - $modules[$controller] = array_filter($actions, - function ($action) use ($controller) - { - $this->_request - ->setControllerName($controller) - ->setActionName($action); + $modules[$controller] = + array_filter($actions, + function ($action) use ($controller) + { - $className = $this->_dispatcher->getControllerClass($this->_request); - $className = $this->_dispatcher->loadClass($className); + if ($this->_isActionValid($action)) + return true; - return (new $className($this->_request, new Zend_Controller_Response_Http, []))->isDispatchable($this->_dispatcher->getActionMethod($this->_request)); - }, - ARRAY_FILTER_USE_KEY); + return $this->_isActionDispatchable($controller, $action); + }, + ARRAY_FILTER_USE_KEY); if (!$modules[$controller]) unset($modules[$controller]); return $modules; } + + + protected function _isActionValid($action) { + //action1.action2 + if ( 0 === strpos($action, 'viewnotice')) + return true; + + if ( 0 === strpos($action, 'resultat')) + return true; + + return false; + } + + + protected function _isActionDispatchable($controller, $action) { + foreach ($this->_modules as $module) + if ($this->_isActionDispatchableInModule($module, $controller, $action)) + return true; + + return false; + } + + + protected function _isActionDispatchableInModule($module, $controller, $action) { + $request = $this->_getRequestFor($module, $controller, $action); + $dispatcher = $this->_getDispatcherFor($module); + $class_name = $dispatcher->getControllerClass($request); + try { + $class_name = $dispatcher->loadClass($class_name); + return (new $class_name($request, new Zend_Controller_Response_Http, [])) + ->isDispatchable($dispatcher->getActionMethod($request)); + } catch (Exception $e) { + return false; + } + } } diff --git a/scripts/upgrade_db.php b/scripts/upgrade_db.php index f292f93e5644632ee7ebaf75a65aa03cd1536235..32a18a17706227c58ef5c877a5686ab484de8477 100644 --- a/scripts/upgrade_db.php +++ b/scripts/upgrade_db.php @@ -2,7 +2,10 @@ require('includes.php'); define("BASE_URL", "/"); -(new Bokeh_Engine())->warmUp(); +(new Bokeh_Engine()) + ->warmUp() + ->setupControllerActionHelper() + ->setupFrontController(); if (262 < (int)Class_CosmoVar::getValueOf('patch_level')) Class_CosmoVar::setValueOf('patch_level', 262); diff --git a/tests/library/Class/Migration/141251_cleaned_historic_profile.json b/tests/library/Class/Migration/141251_cleaned_historic_profile.json new file mode 100644 index 0000000000000000000000000000000000000000..88188c9ba08e9fecb21aef898f31ee47eb0659b8 --- /dev/null +++ b/tests/library/Class/Migration/141251_cleaned_historic_profile.json @@ -0,0 +1,625 @@ +{ + "id": 3, + "id_profil": 3, + "browser": "opac", + "libelle": "r\u00e9seau des biblioth\u00e8ques du pays de Mortagne", + "commentaire": "Bienvenue sur le site du r\u00e9seau des biblioth\u00e8ques du Pays de Mortagne.", + "titre_site": "r\u00e9seau des biblioth\u00e8ques du pays de Mortagne", + "skin": "modele", + "cfg_modules": { + "auth": { + "login": { + "titre": "Entrez votre identit\u00e9 S.V.P.", + "message_connecte": "Bienvenue", + "identifiant": "Identifiant", + "mot_de_passe": "Mot de passe", + "mot_de_passe_exemple": "Ann\u00e9e naissance", + "autocomplete_off": "1", + "lien_connexion": "\u00bb Se connecter", + "lien_deconnection": "\u00bb Se d\u00e9connecter", + "lien_mot_de_passe_oublie": "\u00bb Mot de passe oubli\u00e9 ?", + "lien_compte": "\u00bb Mon compte", + "lien_creer_compte": "\u00bb S'enregistrer" + } + }, + "recherche": { + "resultatsimple": { + "facettes_actif": "1", + "multi_facettes": "1", + "facettes_nombre": "8", + "facettes_codes": "B;S;G;M", + "facettes_message": "Affiner le r\u00e9sultat...", + "tags_position": "2", + "tags_calcul": "1", + "tags_nombre": "20", + "tags_codes": "M;P", + "tags_message": "Elargir la recherche...", + "liste_format": "3", + "liste_nb_par_page": "40", + "liste_codes": "T;J;N;R", + "suggests_number": "40", + "titre": "La rentr\u00e9e des classes", + "search_term_editable": "1", + "suggestion_achat": "1" + }, + "resultatavancee": { + "liste_format": "3", + "liste_nb_par_page": "10", + "liste_codes": "TAN", + "facettes_actif": "1", + "facettes_nombre": "3", + "facettes_codes": "ADPML", + "facettes_message": "Affiner le r\u00e9sultat...", + "tags_position": "2", + "tags_nombre": "30", + "tags_codes": "AMDPZ", + "tags_message": "Elargir la recherche..." + }, + "simple": { + "barre_nav": "Recherche simple", + "titre": "Rechercher un document", + "message": "Livre, CD, DVD.." + }, + "viewnotice": { + "entete": "W;C;N", + "onglets": { + "detail": { + "aff": "2", + "ordre": "1", + "titre": "Notice d\u00e9taill\u00e9e" + }, + "avis": { + "aff": "1", + "ordre": "2", + "titre": "Avis" + }, + "exemplaires": { + "aff": "3", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "1", + "ordre": "4", + "titre": "R\u00e9sum\u00e9s, analyses" + }, + "tags": { + "aff": "3", + "ordre": "5", + "titre": "Tags" + }, + "biographie": { + "aff": "3", + "ordre": "6", + "titre": "Biographies" + }, + "similaires": { + "aff": "3", + "ordre": "7", + "titre": "Notices similaires" + }, + "bibliographie": { + "ordre": "8", + "titre": "Bibliographies" + }, + "morceaux": { + "ordre": "9", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "aff": "2", + "ordre": "10", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "11", + "titre": "Photos" + }, + "videos": { + "ordre": "12", + "titre": "Vid\u00e9os" + } + } + }, + "guidee": { + "barre_nav": "Recherche guid\u00e9e", + "titre": "Recherche guid\u00e9e", + "select_bib": "1" + }, + "viewnotice3": { + "entete": "W;C;N;P", + "onglets": { + "detail": { + "aff": "1", + "ordre": "1", + "titre": "Notice d\u00e9taill\u00e9e" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des biblioth\u00e9caires" + }, + "exemplaires": { + "aff": "1", + "ordre": "2", + "titre": "Exemplaires" + }, + "resume": { + "ordre": "4", + "titre": "R\u00e9sum\u00e9s, analyses" + }, + "tags": { + "ordre": "5", + "titre": "Tags" + }, + "biographie": { + "aff": "3", + "ordre": "9", + "titre": "Biographies" + }, + "series": { + "ordre": "100", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "7", + "titre": "Notices similaires" + }, + "bibliographie": { + "aff": "3", + "ordre": "8", + "titre": "Discographies" + }, + "morceaux": { + "aff": "3", + "ordre": "6", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "10", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "11", + "titre": "Photos" + }, + "videos": { + "ordre": "12", + "titre": "Vid\u00e9os" + }, + "resnumeriques": { + "ordre": "100", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "100", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "100", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "aff": "2", + "ordre": "17", + "titre": "Contient" + } + }, + "thumbnail_fields": "992-v" + }, + "viewnotice1": { + "entete": "W;G;N;M", + "onglets": { + "detail": { + "aff": "1", + "ordre": "1", + "titre": "Notice d\u00e9taill\u00e9e" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "2", + "titre": "Exemplaires" + }, + "resume": { + "ordre": "1", + "titre": "R\u00e9sum\u00e9s, analyses" + }, + "tags": { + "ordre": "1", + "titre": "Tags" + }, + "biographie": { + "aff": "3", + "ordre": "20", + "titre": "L'auteur" + }, + "series": { + "aff": "3", + "ordre": "1", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "10", + "titre": "Notices similaires" + }, + "bibliographie": { + "ordre": "50", + "titre": "Bibliographies" + }, + "morceaux": { + "ordre": "30", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "40", + "titre": "Bande-annonce" + }, + "photos": { + "aff": "3", + "ordre": "60", + "titre": "Photos" + }, + "videos": { + "aff": "3", + "ordre": "70", + "titre": "Vid\u00e9os associ\u00e9es" + }, + "resnumeriques": { + "ordre": "80", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "90", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "100", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "aff": "2", + "ordre": "17", + "titre": "Contient" + } + }, + "thumbnail_fields": "992-v" + }, + "resultatguidee": { + "liste_format": "3", + "liste_nb_par_page": "10", + "liste_codes": "TAN", + "facettes_actif": "1", + "facettes_nombre": "3", + "facettes_codes": "ADPML", + "facettes_message": "Affiner le r\u00e9sultat...", + "tags_actif": "1", + "tags_position": "2", + "tags_nombre": "30", + "tags_codes": "AMDPZ", + "tags_message": "Elargir la recherche..." + }, + "viewnotice4": { + "entete": "W;C;N;D", + "onglets": { + "detail": { + "aff": "1", + "ordre": "1", + "titre": "Notice d\u00e9taill\u00e9e" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des biblioth\u00e9caires" + }, + "exemplaires": { + "aff": "1", + "ordre": "2", + "titre": "Exemplaires" + }, + "resume": { + "ordre": "4", + "titre": "R\u00e9sum\u00e9s, analyses" + }, + "tags": { + "ordre": "5", + "titre": "Tags" + }, + "biographie": { + "aff": "3", + "ordre": "10", + "titre": "Biographies" + }, + "series": { + "aff": "3", + "ordre": "100", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "7", + "titre": "Notices similaires" + }, + "bibliographie": { + "ordre": "8", + "titre": "Bibliographies" + }, + "morceaux": { + "aff": "3", + "ordre": "9", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "aff": "3", + "ordre": "6", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "11", + "titre": "Photos" + }, + "videos": { + "aff": "3", + "ordre": "20", + "titre": "Interviews" + }, + "resnumeriques": { + "ordre": "100", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "100", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "100", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "aff": "2", + "ordre": "17", + "titre": "Contient" + } + }, + "thumbnail_fields": "992-v" + }, + "resultatrebond": { + "liste_format": "3", + "liste_nb_par_page": "10", + "liste_codes": "TAN", + "facettes_actif": "1", + "facettes_nombre": "3", + "facettes_codes": "ADMG", + "facettes_message": "Affiner le r\u00e9sultat...", + "tags_position": "2", + "tags_nombre": "30", + "tags_codes": "AMDPZ", + "tags_message": "Elargir la recherche..." + }, + "viewnotice5": { + "entete": "W;C;N;M", + "onglets": { + "detail": { + "aff": "1", + "ordre": "1", + "titre": "Notice d\u00e9taill\u00e9e" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des biblioth\u00e9caires" + }, + "exemplaires": { + "aff": "1", + "ordre": "2", + "titre": "Exemplaires" + }, + "resume": { + "ordre": "4", + "titre": "R\u00e9sum\u00e9s, analyses" + }, + "tags": { + "ordre": "5", + "titre": "Tags" + }, + "biographie": { + "ordre": "6", + "titre": "Biographies" + }, + "series": { + "aff": "2", + "ordre": "7", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "ordre": "7", + "titre": "Notices similaires" + }, + "bibliographie": { + "ordre": "8", + "titre": "Bibliographies" + }, + "morceaux": { + "ordre": "9", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "10", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "11", + "titre": "Photos" + }, + "videos": { + "ordre": "12", + "titre": "Interviews" + }, + "resnumeriques": { + "aff": "2", + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "aff": "2", + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "aff": "2", + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "aff": "2", + "ordre": "17", + "titre": "Contient" + } + }, + "thumbnail_fields": "992-v" + }, + "avancee": { + "barre_nav": "Recherche avanc\u00e9e", + "titre": "Recherche avanc\u00e9e" + }, + "viewnotice2": { + "entete": "W;C;N;M", + "onglets": { + "detail": { + "aff": "1", + "ordre": "1", + "titre": "Notice d\u00e9taill\u00e9e" + }, + "avis": { + "aff": "1", + "ordre": "2", + "titre": "Avis des biblioth\u00e9caires" + }, + "exemplaires": { + "aff": "1", + "ordre": "3", + "titre": "Exemplaires" + }, + "resume": { + "ordre": "4", + "titre": "R\u00e9sum\u00e9s, analyses" + }, + "tags": { + "ordre": "5", + "titre": "Tags" + }, + "biographie": { + "ordre": "6", + "titre": "Biographies" + }, + "series": { + "aff": "2", + "ordre": "7", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "ordre": "7", + "titre": "Notices similaires" + }, + "bibliographie": { + "ordre": "8", + "titre": "Bibliographies" + }, + "morceaux": { + "ordre": "9", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "10", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "11", + "titre": "Photos" + }, + "videos": { + "ordre": "12", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "aff": "2", + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "aff": "2", + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "aff": "2", + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "aff": "2", + "ordre": "17", + "titre": "Contient" + } + }, + "thumbnail_fields": "992-v" + } + }, + "cms": { + "articleview": [], + "categorieview": { + "barre_nav": "Article" + }, + "articleviewbydate": { + "barre_nav": "Agenda", + "titre": "Agenda" + }, + "articleviewpreferences": { + "boite": "boite_banniere_droite" + }, + "articleviewselection": [] + }, + "sito": { + "viewrecent": { + "barre_nav": "Sitoth\u00e8que" + } + }, + "bib": { + "bibview": { + "barre_nav": "Biblioth\u00e8que" + } + }, + "blog": { + "viewauteur": { + "barre_nav": "Critique" + } + } + }, + "cfg_notice": "a:1:{s:11:\"exemplaires\";a:17:{s:9:\"libraries\";s:0:\"\";s:13:\"all_items_map\";s:1:\"1\";s:8:\"order_by\";s:0:\"\";s:15:\"order_direction\";s:3:\"ASC\";s:7:\"en_pret\";s:9:\"emprunt\u00c3\u00a9\";s:7:\"grouper\";s:1:\"1\";s:3:\"bib\";s:1:\"1\";s:7:\"section\";s:1:\"1\";s:11:\"emplacement\";s:1:\"0\";s:12:\"localisation\";s:1:\"0\";s:4:\"plan\";s:1:\"0\";s:4:\"resa\";s:1:\"1\";s:5:\"dispo\";s:1:\"1\";s:6:\"annexe\";s:1:\"0\";s:11:\"date_retour\";s:1:\"1\";s:16:\"datas_items_code\";a:1:{i:0;s:1:\"f\";}s:17:\"datas_items_label\";a:1:{i:0;s:2:\"CB\";}}}", + "rewrite_url": "", + "domain_ids": "", + "template": "HISTORIC", + "cfg_accueil": { + "use_parent_css": "1", + "modules": [], + "sitemap": "1" + }, + "cfg_menus": { + "H": { + "libelle": "Menu horizontal", + "picto": "vide.gif", + "menus": [] + }, + "V": { + "libelle": "Menu vertical", + "picto": "vide.gif", + "menus": [] + } + } +} diff --git a/tests/library/Class/Migration/141251_cleaned_theme_profile.json b/tests/library/Class/Migration/141251_cleaned_theme_profile.json new file mode 100644 index 0000000000000000000000000000000000000000..7d8bfedfaf2e10c3734d19af44f3f7a8bb1a2a28 --- /dev/null +++ b/tests/library/Class/Migration/141251_cleaned_theme_profile.json @@ -0,0 +1,5157 @@ +{ + "id": 7, + "id_profil": 7, + "browser": "opac", + "sel_type_doc": "", + "sel_section": "", + "sel_annexe": "", + "libelle": "Le bouquet des biblioth\u00e8ques", + "commentaire": "Le bouquet des m\u00e9diath\u00e8ques : M\u00e9diath\u00e8que de Chamb\u00e9ry, La Motte Servolex, La Ravoire, Barberaz, Challes les Eaux", + "titre_site": "Le bouquet des biblioth\u00e8ques", + "skin": "chambery", + "cfg_site": "a:36:{s:12:\"access_level\";s:2:\"-1\";s:21:\"mail_suggestion_achat\";s:0:\"\";s:10:\"header_img\";s:40:\"\/skins\/chambery\/images\/site\/banniere.jpg\";s:16:\"header_img_cycle\";s:1:\"0\";s:7:\"favicon\";s:0:\"\";s:15:\"logo_gauche_img\";s:29:\"\/userfiles\/bannieres\/logo.png\";s:16:\"logo_gauche_link\";s:47:\"http:\/\/www.lebouquetdesbibliotheques.fr\/accueil\";s:15:\"logo_droite_img\";s:0:\"\";s:16:\"logo_droite_link\";s:0:\"\";s:16:\"hauteur_banniere\";s:0:\"\";s:21:\"couleur_texte_bandeau\";s:0:\"\";s:20:\"couleur_lien_bandeau\";s:0:\"\";s:21:\"header_social_network\";s:1:\"0\";s:10:\"header_css\";s:29:\"\/userfiles\/css\/profil_126.css\";s:9:\"header_js\";s:0:\"\";s:12:\"largeur_site\";s:3:\"100\";s:12:\"nb_divisions\";s:1:\"3\";s:15:\"ordre_divisions\";s:1:\"0\";s:17:\"largeur_division1\";s:2:\"10\";s:15:\"marge_division1\";s:0:\"\";s:17:\"largeur_division2\";s:2:\"10\";s:15:\"marge_division2\";s:0:\"\";s:17:\"largeur_division3\";s:2:\"10\";s:15:\"marge_division3\";s:0:\"\";s:29:\"division_three_always_visible\";s:1:\"0\";s:12:\"menu_haut_on\";s:1:\"1\";s:12:\"barre_nav_on\";s:0:\"\";s:18:\"liens_sortants_off\";s:1:\"0\";s:16:\"accessibilite_on\";s:0:\"\";s:36:\"display_current_profil_on_breadcrumb\";s:1:\"0\";s:10:\"responsive\";s:0:\"\";s:15:\"size_site_scale\";s:7:\"percent\";s:21:\"width_division1_scale\";s:7:\"percent\";s:21:\"width_division2_scale\";s:7:\"percent\";s:21:\"width_division3_scale\";s:7:\"percent\";s:10:\"login_page\";s:0:\"\";}", + "ref_tags": "bouquet,chamb\u00e9ry,m\u00e9diath\u00e8que, biblioth\u00e8que, grainoth\u00e8que, patrimoine, ressources p\u00e9dagogiques,livre, presse, revue, wifi", + "ref_description": "", + "cfg_accueil": { + "use_parent_css": "1", + "modules": { + "0": { + "division": "2" + }, + "5": { + "type_module": "FREE", + "preferences": { + "titre": "Boite libre", + "boite": [ + "no_border", + "no_border_radius", + "no_shadow" + ], + "profile_id": "7", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1", + "PolygoneShowContent": "1", + "PolygoneShowFooter": "1", + "id_items": "1754" + }, + "division": "2", + "id_module": "5", + "profile_id": "7" + }, + "9": { + "type_module": "FREE", + "preferences": { + "titre": "Boite libre", + "boite": [ + "no_border", + "no_border_radius", + "no_shadow" + ], + "profile_id": "7", + "id_items": "1777", + "PolygoneOrderXsmall": "5", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "division": "2", + "id_module": "9", + "profile_id": "7" + }, + "10": { + "type_module": "MENU", + "preferences": { + "titre": "Menu des th\u00e8mes", + "menu": "7-10", + "layout": "horizontal", + "boite": [ + "no_border", + "no_border_radius", + "no_shadow", + "polygone_big_menu_buttons" + ], + "profile_id": "7", + "PolygoneShowContent": "1", + "PolygoneShowFooter": "1", + "PolygoneOrderXsmall": "3", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "division": "2", + "id_module": "10", + "profile_id": "7" + }, + "7": { + "type_module": "MENU", + "preferences": { + "titre": "Boite menu", + "menu": "7-12", + "layout": "horizontal", + "boite": [ + "no_border", + "no_border_radius", + "no_shadow", + "polygone_big_menu_buttons" + ], + "profile_id": "7", + "PolygoneOrderXsmall": "5", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1", + "PolygoneShowContent": "1", + "PolygoneShowFooter": "1" + }, + "division": "2", + "id_module": "7", + "profile_id": "7" + }, + "2": { + "type_module": "IMAGE", + "preferences": { + "titre": "Boite image", + "image": "\/userfiles\/image\/banniere\/banniereV13.png", + "link_title": "Acc\u00e9der \u00e0 %s", + "boite": [ + "justify-content-center", + "no_border", + "no_border_radius", + "no_shadow" + ], + "profile_id": "7", + "PolygoneExpandBreakpoint": "sm", + "PolygoneWidthXsmall": "12", + "PolygoneWidthMedium": "10", + "PolygoneOrderSmall": "1", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1", + "PolygoneOffsetMedium": "1" + }, + "division": "4", + "id_module": "2", + "profile_id": "7" + }, + "4": { + "type_module": "IMAGE", + "preferences": { + "titre": "Boite image", + "image": "\/userfiles\/image\/banniere\/bandeV5.png", + "link_title": "Acc\u00e9der \u00e0 %s", + "boite": [ + "no_border", + "no_border_radius", + "no_shadow" + ], + "profile_id": "7", + "PolygoneExpandBreakpoint": "sm", + "PolygoneWidthXsmall": "12", + "PolygoneOrderXsmall": "4", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "division": "4", + "id_module": "4", + "profile_id": "7" + }, + "3": { + "type_module": "ADMIN_TOOLS", + "preferences": { + "titre": "Administration", + "display_mode": "toggle", + "boite": [ + "no_border", + "no_border_radius", + "position_fixed_top_left", + "white_widget" + ], + "profile_id": "7", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "division": "4", + "id_module": "3", + "profile_id": "7" + }, + "1": { + "type_module": "RECH_SIMPLE", + "preferences": { + "largeur": "140", + "recherche_avancee": "1", + "tri": "*", + "profil_redirect": "1", + "placeholder": "Titre, auteur\u2026", + "search_button": "class fas fa-search", + "domain_select_style": "select", + "PolygoneFormStyle": "inline", + "library_selection_label": "Biblioth\u00e8que", + "annexe_selection_label": "Site", + "doc_type_selection_label": "Type", + "domain_selection_label": "Domaine", + "boite": [ + "no_border", + "no_shadow" + ], + "profile_id": "7", + "PolygoneExpandBreakpoint": "sm", + "PolygoneWidthXsmall": "12", + "PolygoneWidthMedium": "6", + "PolygoneOrderXsmall": "3", + "PolygoneOrderMedium": "3", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1", + "PolygoneOffsetMedium": "3" + }, + "division": "4", + "id_module": "1", + "profile_id": "7" + }, + "8": { + "type_module": "LOGIN", + "preferences": { + "identifiant_exemple": "Identifiant", + "mot_de_passe_exemple": "Mot de passe", + "lien_connexion": "Ok", + "lien_mot_de_passe_oublie": "Mot de passe oubli\u00e9 ?", + "lien_compte": "Mon compte", + "lien_deconnection": "Se d\u00e9connecter", + "autocomplete_off": "1", + "PolygoneFormStyle": "toggle", + "boite": [ + "justify-content-end", + "no_border", + "no_border_radius", + "no_shadow" + ], + "profile_id": "7", + "PolygoneExpandBreakpoint": "sm", + "PolygoneWidthXsmall": "12", + "PolygoneWidthMedium": "3", + "PolygoneOrderXsmall": "2", + "PolygoneOrderMedium": "3", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "division": "4", + "id_module": "8", + "profile_id": "7" + }, + "22": { + "division": "4", + "type_module": "NOTIFY", + "preferences": { + "titre": "Boite notification", + "boite": [ + "no_border", + "no_border_radius", + "position_fixed_bottom", + "no_background", + "no_shadow" + ], + "id_module": "22", + "profile_id": "7", + "PolygoneWidthXsmall": "9", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + }, + "21": { + "division": "4", + "type_module": "ACCESSIBILITY", + "preferences": { + "titre": "Boite d'accessibilit\u00e9", + "display_mode": "toggle", + "display_colors": "1", + "display_font_size": "1", + "boite": [ + "no_border", + "no_border_radius", + "position_fixed_bottom_left", + "white_widget" + ], + "id_module": "21", + "profile_id": "7", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + }, + "19": { + "division": "4", + "type_module": "SCROLL", + "preferences": { + "titre": "D\u00e9filement vers le haut", + "direction": "up", + "boite": [ + "no_border", + "no_border_radius", + "position_fixed_bottom_right" + ], + "id_module": "19", + "profile_id": "7", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + } + }, + "sitemap": "1", + "section": { + "4": { + "titre": "Division banni\u00e8re", + "visibility": "1", + "boite": [ + "no_border_radius" + ], + "PolygoneWidthXsmall": "12", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1", + "PolygoneDisplayMode": "row" + }, + "2": { + "titre": "Division principale", + "boite": [ + "no_border_radius" + ], + "PolygoneWidthXsmall": "11", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneDisplayMode": "col" + }, + "6": { + "titre": "Division pied de page", + "visibility": "1", + "boite": [ + "no_border_radius" + ], + "PolygoneWidthXsmall": "11", + "PolygoneWidthLarge": "8", + "PolygoneOffsetXsmall": "1", + "PolygoneOffsetLarge": "2", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1", + "PolygoneDisplayMode": "row" + }, + "1": { + "titre": "Premi\u00e8re division optionnelle", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneWidthXsmall": "3", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1", + "PolygoneDisplayMode": "col" + }, + "3": { + "titre": "Seconde division optionnelle", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneWidthXsmall": "3", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1", + "PolygoneDisplayMode": "col" + }, + "5": { + "titre": "Division optionnelle flottante", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneWidthXsmall": "3", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1", + "PolygoneDisplayMode": "col" + } + } + }, + "cfg_menus": { + "H": { + "type_menu": "MENU", + "libelle": "menu haut", + "preferences": [], + "menus": [ + { + "type_menu": "ACCUEIL", + "libelle": "Lien de retour \u00e0 l'accueil", + "picto": "class fas fa-home", + "preferences": { + "use_profil": "1" + } + } + ], + "children": "ACCUEIL;" + }, + "3": { + "libelle": "Menu principal", + "menus": [ + { + "type_menu": "ACCUEIL", + "picto": "class fas fa-home", + "libelle": "Accueil", + "preferences": { + "use_profil": "1" + } + } + ] + }, + "8": { + "libelle": "Mentions l\u00e9gales", + "menus": [ + { + "type_menu": "URL", + "libelle": "Mentions l\u00e9gales" + } + ] + }, + "10": { + "type_menu": "MENU", + "libelle": "Menu des th\u00e8mes", + "preferences": [], + "menus": [ + { + "type_menu": "PROFIL", + "libelle": "Biblioth\u00e8que municipale de Barberaz", + "picto": "\/userfiles\/image\/Accueil2020\/bibBarberaz.png", + "preferences": { + "clef_profil": "59", + "picto_alt": "IMG BIB" + } + }, + { + "type_menu": "PROFIL", + "libelle": "Biblioth\u00e8que municipale de Challes-les-Eaux", + "picto": "\/userfiles\/image\/Accueil2020\/bibChalles.png", + "preferences": { + "clef_profil": "95" + } + }, + { + "type_menu": "PROFIL", + "libelle": "Biblioth\u00e8ques municipales de Chamb\u00e9ry", + "picto": "\/userfiles\/image\/Accueil2020\/bibChy.png", + "preferences": { + "clef_profil": "146" + } + }, + { + "type_menu": "PROFIL", + "libelle": "Biblioth\u00e8que municipale de La Motte-Servolex", + "picto": "\/userfiles\/image\/Accueil2020\/bib2mondes.png", + "preferences": { + "clef_profil": "65" + } + }, + { + "type_menu": "PROFIL", + "libelle": "Biblioth\u00e8que municipale de La Ravoire", + "picto": "\/userfiles\/image\/Accueil2020\/bibLaRavoire.png", + "preferences": { + "clef_profil": "256", + "picto_alt": "\/userfiles\/image\/Accueil2020\/bibLaRavoire.png" + } + }, + { + "type_menu": "PROFIL", + "libelle": "Biblioth\u00e8que municipale de Saint-Baldoph", + "picto": "\/userfiles\/image\/Accueil2020\/saintBaldoph.png", + "preferences": { + "clef_profil": "129" + } + } + ], + "children": "0;1;2;3;4;PROFIL;" + }, + "12": { + "type_menu": "MENU", + "libelle": "Menu Next", + "preferences": [], + "menus": [ + { + "type_menu": "PROFIL", + "libelle": "Artoth\u00e8que de Chamb\u00e9ry", + "picto": "\/userfiles\/image\/Accueil2020\/artoChy.jpeg", + "preferences": { + "clef_profil": "113" + } + } + ], + "children": "6;" + }, + "13": { + "libelle": "Nouveau menu", + "menus": [] + } + }, + "cfg_modules": { + "recherche": { + "resultatsimple": { + "barre_nav": "R\u00e9sultat", + "search_term_editable": "1", + "liste_nb_par_page": "10", + "liste_format": "3", + "liste_codes": "8", + "facettes_actif": "1", + "multi_facettes": "1", + "facettes_codes": "HGEN0;A;HTHME;B;T;HMOUV;Z", + "facettes_nombre": "25", + "facets_closed_codes": "A;T", + "facettes_message": "Affiner le r\u00e9sultat...", + "suggests_enabled": "1", + "suggests_number": "3", + "tags_codes": "A;M;F", + "tags_nombre": "30", + "tags_position": "2", + "tags_message": "Elargir la recherche...", + "cvs_display_position": "3", + "cvs_resultat_titre": "Ressources num\u00e9riques", + "cvs_autres_resultats": "Documents", + "cvs_msg_deco": "Vous devez etre connect\u00e9", + "cvs_nb_result": "5", + "cvs_msg_droit": "Merci de contacter la m\u00e9diath\u00e8que pour obtenir un acc\u00e8s.", + "zones_titre": "200$b;200$c;200$e;200$f;200$g;200$h;200$i;207$a", + "boite": [], + "visibility": "1" + }, + "viewnotice5": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice1": { + "barre_nav": "Notice", + "boite": [], + "entete": "W;N;F;G;M;C;9;R;", + "thumbnail_fields": "-", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1", + "xslt": "\/userfiles\/UNIMARC_notice_CD.xsl" + }, + "viewnotice3": { + "barre_nav": "Notice", + "entete": "J;A;W;N;F;G;M", + "onglets": { + "detail": { + "aff": "2", + "ordre": "1", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Critiques" + }, + "exemplaires": { + "aff": "1", + "ordre": "2", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "4", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "6", + "titre": "Biographie" + }, + "series": { + "ordre": "7", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "8", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "aff": "3", + "ordre": "1", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "aff": "3", + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "aff": "3", + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "aff": "2", + "ordre": "17" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice2": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "analytics": "461$9", + "analytics_title": "461$t", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "aff": "2", + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice4": { + "barre_nav": "Notice", + "boite": [], + "entete": "W;N;F;G;M;9;R", + "thumbnail_fields": "-", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "xslt": "\/userfiles\/UNIMARC_notice_DVD.xsl", + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice0": { + "onglets": { + "detail": { + "aff": "2", + "ordre": "1", + "titre": "Description du document" + }, + "avis": { + "aff": "2", + "ordre": "2", + "titre": "Critiques" + }, + "exemplaires": { + "aff": "2", + "ordre": "3", + "titre": "Exemplaires" + }, + "resume": { + "aff": "2", + "ordre": "4", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "aff": "2", + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "2", + "ordre": "6", + "titre": "Biographie de l'auteur" + }, + "series": { + "aff": "2", + "ordre": "7", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "2", + "ordre": "8", + "titre": "Documents similaires" + }, + "bibliographie": { + "aff": "2", + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "aff": "2", + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "aff": "2", + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "aff": "2", + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "aff": "2", + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "aff": "2", + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "aff": "2", + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "aff": "2", + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "aff": "2", + "ordre": "17", + "titre": "Contient" + } + }, + "entete": "W;C;N" + }, + "viewnotice102": { + "onglets": { + "detail": { + "aff": "2", + "ordre": "1", + "titre": "Description du document" + }, + "avis": { + "aff": "2", + "ordre": "2", + "titre": "Critiques" + }, + "exemplaires": { + "ordre": "3", + "titre": "Exemplaires" + }, + "resume": { + "ordre": "4", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "13", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "7", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "14", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "aff": "3", + "ordre": "8", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "aff": "3", + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "17", + "titre": "Contient" + } + }, + "entete": "W;C;N" + }, + "viewnotice19": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice14": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice27": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice28": { + "barre_nav": "Notice", + "boite": [], + "entete": "W;N;F;G;M;9;R", + "thumbnail_fields": "-", + "onglets": { + "detail": { + "aff": "2", + "ordre": "1", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "2", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1", + "xslt": "\/userfiles\/UNIMARC_notice_CD.xsl" + }, + "viewnoticeAssimil": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "ordre": "1", + "titre": "Description du document" + }, + "avis": { + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "ordre": "2", + "titre": "Exemplaires" + }, + "resume": { + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "14", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "aff": "3", + "ordre": "4", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice11": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice8": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + } + }, + "viewnotice17": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice30": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice18": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice9": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + } + }, + "viewnotice20": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice21": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice31": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice25": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice32": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice40": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice22": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice34": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R;", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice23": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice24": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice37": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice10": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + } + }, + "viewnotice36": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R;T;", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice39": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "2", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice118": { + "entete": "W;C;N", + "onglets": { + "detail": { + "aff": "1", + "ordre": "1", + "titre": "Description du document" + }, + "avis": { + "ordre": "2", + "titre": "Critiques" + }, + "exemplaires": { + "ordre": "3", + "titre": "Exemplaires" + }, + "resume": { + "ordre": "4", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "ordre": "14", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "7", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "8", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "aff": "3", + "ordre": "6", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "aff": "1", + "ordre": "17", + "titre": "Contient" + } + } + }, + "viewnotice104": { + "barre_nav": "Notice", + "boite": [], + "entete": "W;N;F;G;M;9;R", + "thumbnail_fields": "-", + "onglets": { + "detail": { + "aff": "1", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "3", + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "aff": "3", + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "4", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "aff": "3", + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "aff": "1", + "ordre": "1", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1", + "xslt": "\/userfiles\/UNIMARC_notice_CD.xsl" + }, + "viewnotice12": { + "barre_nav": "Notice", + "entete": "W;C;N", + "analytics": "461$9", + "analytics_title": "461$t", + "onglets": { + "detail": { + "aff": "1", + "ordre": "1", + "titre": "Description du document" + }, + "avis": { + "ordre": "2", + "titre": "Critiques" + }, + "exemplaires": { + "aff": "2", + "ordre": "3", + "titre": "Exemplaires" + }, + "resume": { + "ordre": "4", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "ordre": "6", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "7", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "ordre": "8", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "17", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnoticeToutApprendre": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "1", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "14", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "aff": "3", + "ordre": "4", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnoticeDiMusic": { + "barre_nav": "Notice", + "entete": "W;N;F;G;M;9;R", + "onglets": { + "detail": { + "aff": "1", + "ordre": "2", + "titre": "Description du document" + }, + "avis": { + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "ordre": "2", + "titre": "R\u00e9sum\u00e9s" + }, + "tags": { + "ordre": "5", + "titre": "Rebondir dans le catalogue" + }, + "biographie": { + "ordre": "1", + "titre": "Biographie de l'auteur" + }, + "series": { + "ordre": "3", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "14", + "titre": "Documents similaires" + }, + "bibliographie": { + "ordre": "9", + "titre": "Discographie" + }, + "morceaux": { + "ordre": "10", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "11", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "12", + "titre": "Photos" + }, + "videos": { + "ordre": "13", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "aff": "3", + "ordre": "4", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "ordre": "100", + "titre": "Contient" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "avancee": { + "barre_nav": "Recherche avanc\u00e9e", + "titre": "Recherche avanc\u00e9e", + "select_bib": "1", + "liste_nb_par_page": "10", + "liste_codes": "T;A;W", + "forms": "1", + "boite": [ + "polygone_simple_widget" + ], + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "saisie": { + "titre": "Boite recherche", + "select_doc": "1", + "largeur": "250", + "recherche_avancee": "1", + "tri": "*", + "domain_select_style": "select", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice": { + "barre_nav": "Notice", + "entete": "W;C;N", + "onglets": { + "detail": { + "aff": "2", + "ordre": "1" + }, + "avis": { + "aff": "2", + "ordre": "2" + }, + "exemplaires": { + "aff": "2", + "ordre": "3" + }, + "resume": { + "aff": "2", + "ordre": "4" + }, + "tags": { + "aff": "2", + "ordre": "5" + }, + "biographie": { + "aff": "2", + "ordre": "6" + }, + "series": { + "aff": "2", + "ordre": "7" + }, + "similaires": { + "aff": "2", + "ordre": "8" + }, + "bibliographie": { + "aff": "2", + "ordre": "9" + }, + "morceaux": { + "aff": "2", + "ordre": "10" + }, + "bandeAnnonce": { + "aff": "2", + "ordre": "11" + }, + "photos": { + "aff": "2", + "ordre": "12" + }, + "videos": { + "aff": "2", + "ordre": "13" + }, + "resnumeriques": { + "aff": "2", + "ordre": "14" + }, + "babeltheque": { + "aff": "2", + "ordre": "15" + }, + "frbr": { + "aff": "2", + "ordre": "16" + }, + "recounts": { + "aff": "2", + "ordre": "17" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice26": { + "barre_nav": "Notice", + "entete": "W;C;N", + "onglets": { + "detail": { + "aff": "2", + "ordre": "1" + }, + "avis": { + "aff": "2", + "ordre": "2" + }, + "exemplaires": { + "aff": "2", + "ordre": "3" + }, + "resume": { + "aff": "2", + "ordre": "4" + }, + "tags": { + "aff": "2", + "ordre": "5" + }, + "biographie": { + "aff": "2", + "ordre": "6" + }, + "series": { + "aff": "2", + "ordre": "7" + }, + "similaires": { + "aff": "2", + "ordre": "8" + }, + "bibliographie": { + "aff": "2", + "ordre": "9" + }, + "morceaux": { + "aff": "2", + "ordre": "10" + }, + "bandeAnnonce": { + "aff": "2", + "ordre": "11" + }, + "photos": { + "aff": "2", + "ordre": "12" + }, + "videos": { + "aff": "2", + "ordre": "13" + }, + "resnumeriques": { + "aff": "2", + "ordre": "14" + }, + "babeltheque": { + "aff": "2", + "ordre": "15" + }, + "frbr": { + "aff": "2", + "ordre": "16" + }, + "recounts": { + "aff": "2", + "ordre": "17" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice42": { + "barre_nav": "Notice", + "entete": "W;C;N", + "onglets": { + "detail": { + "aff": "2", + "ordre": "1" + }, + "avis": { + "aff": "2", + "ordre": "2" + }, + "exemplaires": { + "aff": "2", + "ordre": "3" + }, + "resume": { + "aff": "2", + "ordre": "4" + }, + "tags": { + "aff": "2", + "ordre": "5" + }, + "biographie": { + "aff": "2", + "ordre": "6" + }, + "series": { + "aff": "2", + "ordre": "7" + }, + "similaires": { + "aff": "2", + "ordre": "8" + }, + "bibliographie": { + "aff": "2", + "ordre": "9" + }, + "morceaux": { + "aff": "2", + "ordre": "10" + }, + "bandeAnnonce": { + "aff": "2", + "ordre": "11" + }, + "photos": { + "aff": "2", + "ordre": "12" + }, + "videos": { + "aff": "2", + "ordre": "13" + }, + "resnumeriques": { + "aff": "2", + "ordre": "14" + }, + "babeltheque": { + "aff": "2", + "ordre": "15" + }, + "frbr": { + "aff": "2", + "ordre": "16" + }, + "recounts": { + "aff": "2", + "ordre": "17" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewnotice43": { + "barre_nav": "Notice", + "entete": "W;C;N", + "onglets": { + "detail": { + "aff": "2", + "ordre": "1" + }, + "avis": { + "aff": "2", + "ordre": "2" + }, + "exemplaires": { + "aff": "2", + "ordre": "3" + }, + "resume": { + "aff": "2", + "ordre": "4" + }, + "tags": { + "aff": "2", + "ordre": "5" + }, + "biographie": { + "aff": "2", + "ordre": "6" + }, + "series": { + "aff": "2", + "ordre": "7" + }, + "similaires": { + "aff": "2", + "ordre": "8" + }, + "bibliographie": { + "aff": "2", + "ordre": "9" + }, + "morceaux": { + "aff": "2", + "ordre": "10" + }, + "bandeAnnonce": { + "aff": "2", + "ordre": "11" + }, + "photos": { + "aff": "2", + "ordre": "12" + }, + "videos": { + "aff": "2", + "ordre": "13" + }, + "resnumeriques": { + "aff": "2", + "ordre": "14" + }, + "babeltheque": { + "aff": "2", + "ordre": "15" + }, + "frbr": { + "aff": "2", + "ordre": "16" + }, + "recounts": { + "aff": "2", + "ordre": "17" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + }, + "index": { + "formulairecontact": { + "type_module": "FORM_CONTACT", + "type_menu": "FORM_CONTACT", + "libelle": "Lien vers le formulaire de contact", + "preferences": [], + "barre_nav": "Formulaire de contact", + "bib_selector": "1", + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "index": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "heartbeat": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + }, + "cms": { + "articleview": { + "barre_nav": "Article", + "boite": [ + "no_border", + "no_border_radius", + "no_shadow" + ], + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneWidthSmall": "12", + "PolygoneOrderLarge": "8", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "articleviewbydate": { + "barre_nav": "Calendrier", + "titre": "Calendrier", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "articleviewrecent": { + "barre_nav": "Article", + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "calendar": { + "barre_nav": "Article", + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "articleviewselection": { + "barre_nav": "Article", + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "articleviewpreferences": { + "barre_nav": "Article", + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + }, + "auth": { + "register": { + "barre_nav": "S'inscrire", + "titre": "Demande d'inscription", + "register_help": "Remplissez les champs ci-dessous\r\nUn mail de confirmation vous sera envoy\u00e9.\r\nVous devrez cliquer sur le lien pour confirmer la cr\u00e9ation de votre compte.", + "register_confirm": "Cher Internaute,<br \/>Merci pour votre inscription.<br \/>Pour v\u00e9rifier l'adresse e-mail associ\u00e9e \u00e0 votre compte, nous avons envoy\u00e9 un courrier \u00e9lectronique \u00e0 l'adresse indiqu\u00e9e. Pour activer votre compte, acc\u00e9dez \u00e0 votre messagerie et cliquez sur le lien fourni dans le courrier de v\u00e9rification.", + "fields": "library:;card_number:;lastname:required;firstname:optional", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "login": { + "barre_nav": "Connexion", + "titre": "Se connecter", + "identifiant": "Identifiant", + "mot_de_passe": "Mot de passe", + "lien_connexion": "\u00bb Se connecter", + "lien_mot_de_passe_oublie": "\u00bb Mot de passe oubli\u00e9 ?", + "lien_creer_compte": "\u00bb S'enregistrer", + "message_connecte": "Bienvenue", + "lien_compte": "\u00bb Mon compte", + "lien_deconnection": "\u00bb Se d\u00e9connecter", + "autocomplete_off": "1", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "logout": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "boite-login": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "lostpass": { + "barre_nav": "demande de mot de passe", + "titre": "Mot de passe oubli\u00e9", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "reset-password": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "activeuser": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + }, + "abonne": { + "fiche": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "reservations": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "prets": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "discard-parent-link-notification": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "reserver": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "suggestion-achat": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "ajouter-le-document-a-la-selection": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "suggestion-achat-add": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "cmsavis": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "prolongerPret": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "selection": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewavis": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "suivre-une-recherche": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "all-datas.csv": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "selections": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "cards": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "configurations": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "edit": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "loans-history": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "informations": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "index": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "suggestions": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "ajax-loans": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "supprimer-la-selection": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "modifier": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "exporter-la-selection": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "renommer-la-selection": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + }, + "bib": { + "en-lire-plus": { + "barre_nav": "Recherche g\u00e9ographique", + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + }, + "cas-server-V10": { + "login": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "index": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + }, + "author": { + "view": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "interviews": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "youtube-chan": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "records": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "biography": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "collaborations": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + }, + "drive-checkout": { + "plan": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "ical": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + }, + "blog": { + "viewauteur": { + "barre_nav": "Critique", + "nb_display": "50", + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewavis": { + "barre_nav": "Critique", + "nb_display": "50", + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "viewcritiques": { + "barre_nav": "Critique", + "nb_display": "50", + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "read-more": { + "barre_nav": "Critique", + "nb_display": "50", + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "lastcritique": { + "barre_nav": "Critique", + "nb_display": "50", + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + }, + "domains": { + "browse": { + "titre": "Boite domaines", + "tri": "annee desc, alpha_titre asc", + "display_mode": "4", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + }, + "bookmarked-searches": { + "add": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + }, + "help": { + "cookies": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + }, + "sito": { + "viewselection": { + "barre_nav": "Sitoth\u00e8que", + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "sitoview": { + "barre_nav": "Sitoth\u00e8que", + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + }, + "panier": { + "index": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "delete-record": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + }, + "delete": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + }, + "noticeajax": { + "add-avis": { + "barre_nav": "Notice", + "entete": "W;C;N", + "onglets": { + "detail": { + "aff": "2", + "ordre": "1" + }, + "avis": { + "aff": "2", + "ordre": "2" + }, + "exemplaires": { + "aff": "2", + "ordre": "3" + }, + "resume": { + "aff": "2", + "ordre": "4" + }, + "tags": { + "aff": "2", + "ordre": "5" + }, + "biographie": { + "aff": "2", + "ordre": "6" + }, + "series": { + "aff": "2", + "ordre": "7" + }, + "similaires": { + "aff": "2", + "ordre": "8" + }, + "bibliographie": { + "aff": "2", + "ordre": "9" + }, + "morceaux": { + "aff": "2", + "ordre": "10" + }, + "bandeAnnonce": { + "aff": "2", + "ordre": "11" + }, + "photos": { + "aff": "2", + "ordre": "12" + }, + "videos": { + "aff": "2", + "ordre": "13" + }, + "resnumeriques": { + "aff": "2", + "ordre": "14" + }, + "babeltheque": { + "aff": "2", + "ordre": "15" + }, + "frbr": { + "aff": "2", + "ordre": "16" + }, + "recounts": { + "aff": "2", + "ordre": "17" + } + }, + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + }, + "user": { + "index": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + }, + "modules": { + "mycow-sso": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + }, + "stat": { + "index": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + }, + "Modules": { + "CMS": { + "titre": "Action", + "visibility": "1", + "PolygoneExpandBreakpoint": "sm", + "PolygoneVisibilityIndex": "1", + "PolygoneVisibilityRecherche": "1", + "PolygoneVisibilityAbonne": "1", + "PolygoneVisibilityCms": "1", + "PolygoneVisibilityBlog": "1", + "PolygoneVisibilityAuth": "1" + } + } + }, + "cfg_notice": "a:2:{s:11:\"exemplaires\";a:17:{s:9:\"libraries\";s:0:\"\";s:13:\"all_items_map\";s:1:\"1\";s:8:\"order_by\";s:1:\"k\";s:15:\"order_direction\";s:4:\"DESC\";s:7:\"en_pret\";s:9:\"emprunt\u00c3\u00a9\";s:7:\"grouper\";s:1:\"1\";s:3:\"bib\";s:1:\"1\";s:7:\"section\";s:1:\"1\";s:11:\"emplacement\";s:1:\"1\";s:12:\"localisation\";s:1:\"0\";s:4:\"plan\";s:1:\"0\";s:4:\"resa\";s:1:\"1\";s:5:\"dispo\";s:1:\"1\";s:6:\"annexe\";s:1:\"1\";s:11:\"date_retour\";s:1:\"1\";s:16:\"datas_items_code\";a:1:{i:0;s:0:\"\";}s:17:\"datas_items_label\";a:1:{i:0;s:0:\"\";}}s:7:\"en_pret\";s:8:\"En pr\u00c3\u00aat\";}", + "rewrite_url": "accueil", + "domain_ids": "", + "template": "POLYGONE" +} diff --git a/tests/library/Class/Migration/141251_profile_with_theme_historic.json b/tests/library/Class/Migration/141251_profile_with_theme_historic.json new file mode 100644 index 0000000000000000000000000000000000000000..5b8711d61f669c5f88908079c7ff8ef994599c9e --- /dev/null +++ b/tests/library/Class/Migration/141251_profile_with_theme_historic.json @@ -0,0 +1,627 @@ +{ + "id": 1, + "id_profil": 1, + "parent_id": null, + "browser": "opac", + "id_site": 0, + "libelle": "r\u00e9seau des biblioth\u00e8ques du pays de Mortagne", + "commentaire": "Bienvenue sur le site du r\u00e9seau des biblioth\u00e8ques du Pays de Mortagne.", + "titre_site": "r\u00e9seau des biblioth\u00e8ques du pays de Mortagne", + "mail_site": "reseaudesbibliotheques@paysdemortagne.fr", + "skin": "modele", + "cfg_modules": { + "auth": { + "login": { + "titre": "Entrez votre identit\u00e9 S.V.P.", + "message_connecte": "Bienvenue", + "identifiant": "Identifiant", + "mot_de_passe": "Mot de passe", + "mot_de_passe_exemple": "Ann\u00e9e naissance", + "autocomplete_off": "1", + "lien_connexion": "\u00bb Se connecter", + "lien_deconnection": "\u00bb Se d\u00e9connecter", + "lien_mot_de_passe_oublie": "\u00bb Mot de passe oubli\u00e9 ?", + "lien_compte": "\u00bb Mon compte", + "lien_creer_compte": "\u00bb S'enregistrer" + } + }, + "recherche": { + "resultatsimple": { + "facettes_actif": "1", + "multi_facettes": "1", + "facettes_nombre": "8", + "facettes_codes": "B;S;G;M", + "facettes_message": "Affiner le r\u00e9sultat...", + "tags_position": "2", + "tags_calcul": "1", + "tags_nombre": "20", + "tags_codes": "M;P", + "tags_message": "Elargir la recherche...", + "liste_format": "3", + "liste_nb_par_page": "40", + "liste_codes": "T;J;N;R", + "suggests_number": "40", + "titre": "La rentr\u00e9e des classes", + "search_term_editable": "1", + "suggestion_achat": "1" + }, + "resultatavancee": { + "liste_format": "3", + "liste_nb_par_page": "10", + "liste_codes": "TAN", + "facettes_actif": "1", + "facettes_nombre": "3", + "facettes_codes": "ADPML", + "facettes_message": "Affiner le r\u00e9sultat...", + "tags_position": "2", + "tags_nombre": "30", + "tags_codes": "AMDPZ", + "tags_message": "Elargir la recherche..." + }, + "simple": { + "barre_nav": "Recherche simple", + "titre": "Rechercher un document", + "message": "Livre, CD, DVD.." + }, + "viewnotice": { + "entete": "W;C;N", + "onglets": { + "detail": { + "aff": "2", + "ordre": "1", + "titre": "Notice d\u00e9taill\u00e9e" + }, + "avis": { + "aff": "1", + "ordre": "2", + "titre": "Avis" + }, + "exemplaires": { + "aff": "3", + "ordre": "1", + "titre": "Exemplaires" + }, + "resume": { + "aff": "1", + "ordre": "4", + "titre": "R\u00e9sum\u00e9s, analyses" + }, + "tags": { + "aff": "3", + "ordre": "5", + "titre": "Tags" + }, + "biographie": { + "aff": "3", + "ordre": "6", + "titre": "Biographies" + }, + "similaires": { + "aff": "3", + "ordre": "7", + "titre": "Notices similaires" + }, + "bibliographie": { + "ordre": "8", + "titre": "Bibliographies" + }, + "morceaux": { + "ordre": "9", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "aff": "2", + "ordre": "10", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "11", + "titre": "Photos" + }, + "videos": { + "ordre": "12", + "titre": "Vid\u00e9os" + } + } + }, + "guidee": { + "barre_nav": "Recherche guid\u00e9e", + "titre": "Recherche guid\u00e9e", + "select_bib": "1" + }, + "viewnotice3": { + "entete": "W;C;N;P", + "onglets": { + "detail": { + "aff": "1", + "ordre": "1", + "titre": "Notice d\u00e9taill\u00e9e" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des biblioth\u00e9caires" + }, + "exemplaires": { + "aff": "1", + "ordre": "2", + "titre": "Exemplaires" + }, + "resume": { + "ordre": "4", + "titre": "R\u00e9sum\u00e9s, analyses" + }, + "tags": { + "ordre": "5", + "titre": "Tags" + }, + "biographie": { + "aff": "3", + "ordre": "9", + "titre": "Biographies" + }, + "series": { + "ordre": "100", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "7", + "titre": "Notices similaires" + }, + "bibliographie": { + "aff": "3", + "ordre": "8", + "titre": "Discographies" + }, + "morceaux": { + "aff": "3", + "ordre": "6", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "10", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "11", + "titre": "Photos" + }, + "videos": { + "ordre": "12", + "titre": "Vid\u00e9os" + }, + "resnumeriques": { + "ordre": "100", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "100", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "100", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "aff": "2", + "ordre": "17", + "titre": "Contient" + } + }, + "thumbnail_fields": "992-v" + }, + "viewnotice1": { + "entete": "W;G;N;M", + "onglets": { + "detail": { + "aff": "1", + "ordre": "1", + "titre": "Notice d\u00e9taill\u00e9e" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des lecteurs" + }, + "exemplaires": { + "aff": "1", + "ordre": "2", + "titre": "Exemplaires" + }, + "resume": { + "ordre": "1", + "titre": "R\u00e9sum\u00e9s, analyses" + }, + "tags": { + "ordre": "1", + "titre": "Tags" + }, + "biographie": { + "aff": "3", + "ordre": "20", + "titre": "L'auteur" + }, + "series": { + "aff": "3", + "ordre": "1", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "10", + "titre": "Notices similaires" + }, + "bibliographie": { + "ordre": "50", + "titre": "Bibliographies" + }, + "morceaux": { + "ordre": "30", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "40", + "titre": "Bande-annonce" + }, + "photos": { + "aff": "3", + "ordre": "60", + "titre": "Photos" + }, + "videos": { + "aff": "3", + "ordre": "70", + "titre": "Vid\u00e9os associ\u00e9es" + }, + "resnumeriques": { + "ordre": "80", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "90", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "100", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "aff": "2", + "ordre": "17", + "titre": "Contient" + } + }, + "thumbnail_fields": "992-v" + }, + "resultatguidee": { + "liste_format": "3", + "liste_nb_par_page": "10", + "liste_codes": "TAN", + "facettes_actif": "1", + "facettes_nombre": "3", + "facettes_codes": "ADPML", + "facettes_message": "Affiner le r\u00e9sultat...", + "tags_actif": "1", + "tags_position": "2", + "tags_nombre": "30", + "tags_codes": "AMDPZ", + "tags_message": "Elargir la recherche..." + }, + "viewnotice4": { + "entete": "W;C;N;D", + "onglets": { + "detail": { + "aff": "1", + "ordre": "1", + "titre": "Notice d\u00e9taill\u00e9e" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des biblioth\u00e9caires" + }, + "exemplaires": { + "aff": "1", + "ordre": "2", + "titre": "Exemplaires" + }, + "resume": { + "ordre": "4", + "titre": "R\u00e9sum\u00e9s, analyses" + }, + "tags": { + "ordre": "5", + "titre": "Tags" + }, + "biographie": { + "aff": "3", + "ordre": "10", + "titre": "Biographies" + }, + "series": { + "aff": "3", + "ordre": "100", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "aff": "3", + "ordre": "7", + "titre": "Notices similaires" + }, + "bibliographie": { + "ordre": "8", + "titre": "Bibliographies" + }, + "morceaux": { + "aff": "3", + "ordre": "9", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "aff": "3", + "ordre": "6", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "11", + "titre": "Photos" + }, + "videos": { + "aff": "3", + "ordre": "20", + "titre": "Interviews" + }, + "resnumeriques": { + "ordre": "100", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "ordre": "100", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "ordre": "100", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "aff": "2", + "ordre": "17", + "titre": "Contient" + } + }, + "thumbnail_fields": "992-v" + }, + "resultatrebond": { + "liste_format": "3", + "liste_nb_par_page": "10", + "liste_codes": "TAN", + "facettes_actif": "1", + "facettes_nombre": "3", + "facettes_codes": "ADMG", + "facettes_message": "Affiner le r\u00e9sultat...", + "tags_position": "2", + "tags_nombre": "30", + "tags_codes": "AMDPZ", + "tags_message": "Elargir la recherche..." + }, + "viewnotice5": { + "entete": "W;C;N;M", + "onglets": { + "detail": { + "aff": "1", + "ordre": "1", + "titre": "Notice d\u00e9taill\u00e9e" + }, + "avis": { + "aff": "1", + "ordre": "3", + "titre": "Avis des biblioth\u00e9caires" + }, + "exemplaires": { + "aff": "1", + "ordre": "2", + "titre": "Exemplaires" + }, + "resume": { + "ordre": "4", + "titre": "R\u00e9sum\u00e9s, analyses" + }, + "tags": { + "ordre": "5", + "titre": "Tags" + }, + "biographie": { + "ordre": "6", + "titre": "Biographies" + }, + "series": { + "aff": "2", + "ordre": "7", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "ordre": "7", + "titre": "Notices similaires" + }, + "bibliographie": { + "ordre": "8", + "titre": "Bibliographies" + }, + "morceaux": { + "ordre": "9", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "10", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "11", + "titre": "Photos" + }, + "videos": { + "ordre": "12", + "titre": "Interviews" + }, + "resnumeriques": { + "aff": "2", + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "aff": "2", + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "aff": "2", + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "aff": "2", + "ordre": "17", + "titre": "Contient" + } + }, + "thumbnail_fields": "992-v" + }, + "avancee": { + "barre_nav": "Recherche avanc\u00e9e", + "titre": "Recherche avanc\u00e9e" + }, + "viewnotice2": { + "entete": "W;C;N;M", + "onglets": { + "detail": { + "aff": "1", + "ordre": "1", + "titre": "Notice d\u00e9taill\u00e9e" + }, + "avis": { + "aff": "1", + "ordre": "2", + "titre": "Avis des biblioth\u00e9caires" + }, + "exemplaires": { + "aff": "1", + "ordre": "3", + "titre": "Exemplaires" + }, + "resume": { + "ordre": "4", + "titre": "R\u00e9sum\u00e9s, analyses" + }, + "tags": { + "ordre": "5", + "titre": "Tags" + }, + "biographie": { + "ordre": "6", + "titre": "Biographies" + }, + "series": { + "aff": "2", + "ordre": "7", + "titre": "Documents de la m\u00eame s\u00e9rie" + }, + "similaires": { + "ordre": "7", + "titre": "Notices similaires" + }, + "bibliographie": { + "ordre": "8", + "titre": "Bibliographies" + }, + "morceaux": { + "ordre": "9", + "titre": "Morceaux" + }, + "bandeAnnonce": { + "ordre": "10", + "titre": "Bande-annonce" + }, + "photos": { + "ordre": "11", + "titre": "Photos" + }, + "videos": { + "ordre": "12", + "titre": "Archives vid\u00e9o" + }, + "resnumeriques": { + "aff": "2", + "ordre": "14", + "titre": "Ressources num\u00e9riques" + }, + "babeltheque": { + "aff": "2", + "ordre": "15", + "titre": "Babelth\u00e8que" + }, + "frbr": { + "aff": "2", + "ordre": "16", + "titre": "Notices li\u00e9es" + }, + "recounts": { + "aff": "2", + "ordre": "17", + "titre": "Contient" + } + }, + "thumbnail_fields": "992-v" + } + }, + "cms": { + "articleview": [], + "categorieview": { + "barre_nav": "Article" + }, + "articleviewbydate": { + "barre_nav": "Agenda", + "titre": "Agenda" + }, + "articleviewpreferences": { + "boite": "boite_banniere_droite" + }, + "articleviewselection": [] + }, + "catalogue": { + "appelmenu": { + "titre": "Nos Nouveaut\u00e9s", + "liste_format": "3", + "liste_nb_par_page": "10", + "liste_codes": "TAC", + "facettes_actif": "1", + "facettes_nombre": "3", + "facettes_codes": "AMGL", + "facettes_message": "Affiner le r\u00e9sultat...", + "tags_position": "2", + "tags_nombre": "30", + "tags_codes": "MAZ", + "tags_message": "Elargir la recherche..." + } + }, + "sito": { + "viewrecent": { + "barre_nav": "Sitoth\u00e8que" + } + }, + "bib": { + "bibview": { + "barre_nav": "Biblioth\u00e8que" + } + }, + "blog": { + "viewauteur": { + "barre_nav": "Critique" + } + } + }, + "cfg_notice": "a:1:{s:11:\"exemplaires\";a:17:{s:9:\"libraries\";s:0:\"\";s:13:\"all_items_map\";s:1:\"1\";s:8:\"order_by\";s:0:\"\";s:15:\"order_direction\";s:3:\"ASC\";s:7:\"en_pret\";s:9:\"emprunt\u00c3\u00a9\";s:7:\"grouper\";s:1:\"1\";s:3:\"bib\";s:1:\"1\";s:7:\"section\";s:1:\"1\";s:11:\"emplacement\";s:1:\"0\";s:12:\"localisation\";s:1:\"0\";s:4:\"plan\";s:1:\"0\";s:4:\"resa\";s:1:\"1\";s:5:\"dispo\";s:1:\"1\";s:6:\"annexe\";s:1:\"0\";s:11:\"date_retour\";s:1:\"1\";s:16:\"datas_items_code\";a:1:{i:0;s:1:\"f\";}s:17:\"datas_items_label\";a:1:{i:0;s:2:\"CB\";}}}", + "rewrite_url": "", + "domain_ids": "", + "template": "HISTORIC" +} diff --git a/tests/library/Class/Migration/CleanProfileCfgModulesTest.php b/tests/library/Class/Migration/CleanProfileCfgModulesTest.php index fc1455371ba0a1cb0c17c645870826c52287c78c..09bb6a1a42a4f0f7d011e7aeb8708ed3ad9217b1 100644 --- a/tests/library/Class/Migration/CleanProfileCfgModulesTest.php +++ b/tests/library/Class/Migration/CleanProfileCfgModulesTest.php @@ -29,6 +29,9 @@ class CleanProfileCfgModulesScriptTest extends ModelTestCase { ['id' => 1, ]); + (new Class_Profil_Import($this->fixture(Class_Profil::class, ['id' => 3]))) + ->import(__DIR__ . '/141251_profile_with_theme_historic.json'); + (new Class_Profil_Import($this->fixture(Class_Profil::class, ['id' => 7]))) ->import(__DIR__ . '/141251_profile_with_corupted_cfg_modules.json'); @@ -39,21 +42,80 @@ class CleanProfileCfgModulesScriptTest extends ModelTestCase { /** @test */ - public function cfgModulesOfProfileSevenShouldContainsSeventeenEntries() { - $this->assertCount(17, Class_Profil::find(7)->getCfgModulesAsArray()); + public function profileThreeShouldEqualsToCleanedHistoricProfile() { + $this->assertEquals(json_decode((new Storm_FileSystem_Disk)->fileGetContents(__DIR__ . '/141251_cleaned_historic_profile.json')), + json_decode((new Class_Profil_Export(Class_Profil::find(3)))->toString())); + } + + + /** @test */ + public function cfgModulesOfProfileThreeShouldNotContainsCatalogueAppelmenu() { + $modules = Class_Profil::find(3)->getCfgModulesAsArray(); + $this->assertFalse(isset($modules['catalogue'])); } /** @test */ - public function cfgModulesAbonneFavIconShouldNotExists() { - $abonne_settings = Class_Profil::find(7)->getCfgModulesAsArray()['abonne']; - $this->assertFalse(isset($abonne_settings['favicon.ico'])); + public function profilSevenShouldBeEqualsToCleanedThemeProfile() { + $this->assertEquals(json_decode((new Storm_FileSystem_Disk)->fileGetContents(__DIR__ . '/141251_cleaned_theme_profile.json')), + json_decode((new Class_Profil_Export(Class_Profil::find(7)))->toString())); } /** @test */ - public function cfgModulesAbonneLoansShouldExists() { - $abonne_settings = Class_Profil::find(7)->getCfgModulesAsArray()['abonne']; - $this->assertTrue(isset($abonne_settings['prets'])); + public function cfgModulesOfProfileSevenShouldContainsTweentyEntries() { + $this->assertCount(20, Class_Profil::find(7)->getCfgModulesAsArray()); + } + + + public function correctModules() { + return [['recherche', 'viewnotice1'], + ['recherche', 'viewnotice2'], + ['recherche', 'viewnotice3'], + ['recherche', 'viewnotice4'], + ['recherche', 'viewnotice5'], + ['recherche', 'resultatsimple'], + ['recherche', 'viewnoticeDiMusic'], + ['recherche', 'avancee'], + ['abonne', 'fiche'], + ['abonne', 'prets'], + ['abonne', 'loans-history'], + ['abonne', 'reservations'], + ['abonne', 'suggestion-achat'], + ['sito', 'viewselection']]; + } + + + /** + * @dataProvider correctModules + * @test + */ + public function cfgModulesOfProfileSevenShouldContainsModules($module, $action) { + $search_settings = Class_Profil::find(7)->getCfgModulesAsArray()[$module]; + $this->assertTrue(isset($search_settings[$action])); + } + + + public function corruptedModules() { + return [['Components'], + ['Telerik.Web.UI.DialogHandler.aspx'], + ['system'], + ['config'], + ['local'], + ['home.php'], + ['%E2%80%A6'], + ['templates'], + ['v3.php'], + ['pouet']]; + } + + + /** + * @dataProvider corruptedModules + * @test + */ + public function cfgModulesOfProfileSevenShouldBeCleaned($corrupted_module) { + $modules = Class_Profil::find(7)->getCfgModulesAsArray(); + $this->assertFalse(isset($modules[$corrupted_module])); } }