Line 24... |
Line 24... |
24 |
$chemin = str_replace(PAP_CHEMIN_RACINE, '', Config::get('chemin_squelettes'));
|
24 |
$chemin = str_replace(PAP_CHEMIN_RACINE, '', Config::get('chemin_squelettes'));
|
25 |
GEN_stockerStyleExterne('collection', $chemin.'css'.DS.'collection'.DS.'collection.min.css');
|
25 |
GEN_stockerStyleExterne('collection', $chemin.'css'.DS.'collection'.DS.'collection.min.css');
|
26 |
GEN_stockerStyleExterne('jquery-ui-1.8', $chemin.'css'.DS.'humanity'.DS.'jquery-ui-1.8.custom.min.css');
|
26 |
GEN_stockerStyleExterne('jquery-ui-1.8', $chemin.'css'.DS.'humanity'.DS.'jquery-ui-1.8.custom.min.css');
|
Line 27... |
Line 27... |
27 |
|
27 |
|
28 |
// Définition des fichiers JS de l'application pour Papyrus
|
28 |
// Définition des fichiers JS de l'application pour Papyrus
|
- |
|
29 |
GEN_stockerFichierScript('jquery-1.4.2', 'commun'.DS.'jquery'.DS.'1.4.2'.DS.'jquery-1.4.2.min.js');
|
29 |
GEN_stockerFichierScript('jquery-1.4.2', 'commun'.DS.'jquery'.DS.'jquery-1.4.2.min.js');
|
30 |
GEN_stockerFichierScript('jquery-cookie', 'commun'.DS.'jquery'.DS.'1.4.2'.DS.'jquery.cookie.min.js');
|
30 |
GEN_stockerFichierScript('jquery-ui-1.8.custom', $chemin.'js'.DS.'jquery-ui-1.8.custom.min.js');
|
31 |
GEN_stockerFichierScript('jquery-ui-1.8.custom', $chemin.'js'.DS.'jquery-ui-1.8.custom.min.js');
|
Line 31... |
Line 32... |
31 |
GEN_stockerFichierScript('jquery-collection', $chemin.'js'.DS.'jquery-collection.min.js');
|
32 |
GEN_stockerFichierScript('jquery-collection', $chemin.'js'.DS.'jquery-collection.min.js');
|
32 |
|
33 |
|
33 |
// +--------------------------------------------------------------------------------------------------+
|
34 |
// +--------------------------------------------------------------------------------------------------+
|
34 |
// Remplacement de méta tags fournit par Papyrus par ceux créés dans l'appli
|
35 |
// Remplacement de méta tags fournit par Papyrus par ceux créés dans l'appli
|
35 |
if (Collection::getMetaTitre() != '') {
|
36 |
if (AppControleur::getMetaTitre() != '') {
|
36 |
$GLOBALS['_PAPYRUS_']['rendu']['TITRE_PAGE'] = Collection::getMetaTitre();
|
37 |
$GLOBALS['_PAPYRUS_']['rendu']['TITRE_PAGE'] = AppControleur::getMetaTitre();
|
37 |
}
|
38 |
}
|
38 |
if (Collection::getMetaDescription() != '') {
|
39 |
if (AppControleur::getMetaDescription() != '') {
|
39 |
GEN_modifierMetaName('description', Collection::getMetaDescription());
|
40 |
GEN_modifierMetaName('description', AppControleur::getMetaDescription());
|
40 |
}
|
41 |
}
|
41 |
if (Collection::getMetaTags() != '') {
|
42 |
if (AppControleur::getMetaTags() != '') {
|
Line 42... |
Line 43... |
42 |
GEN_modifierMetaName('keywords', Collection::getMetaTags());
|
43 |
GEN_modifierMetaName('keywords', AppControleur::getMetaTags());
|
43 |
}
|
44 |
}
|
44 |
|
45 |
|
45 |
// +--------------------------------------------------------------------------------------------------+
|
46 |
// +--------------------------------------------------------------------------------------------------+
|
46 |
// Fonctions d'affichage dans Papyrus
|
47 |
// Fonctions d'affichage dans Papyrus
|
47 |
/**
|
48 |
/**
|
48 |
* Fonction d'affichage de Papyrus, pour le corps de page.
|
49 |
* Fonction d'affichage de Papyrus, pour le corps de page.
|
49 |
*/
|
50 |
*/
|
Line 50... |
Line 51... |
50 |
function afficherContenuCorps() {
|
51 |
function afficherContenuCorps() {
|
51 |
return Collection::getContenuCorps();
|
52 |
return AppControleur::getContenuCorps();
|
52 |
}
|
53 |
}
|
Line 53... |
Line 54... |
53 |
|
54 |
|
54 |
function afficherContenuTete() {
|
55 |
function afficherContenuTete() {
|
55 |
return Collection::getContenuTete();
|
56 |
return AppControleur::getContenuTete();
|
Line 56... |
Line 57... |
56 |
}
|
57 |
}
|
57 |
|
58 |
|
58 |
function afficherContenuPied() {
|
59 |
function afficherContenuPied() {
|
Line 59... |
Line 60... |
59 |
return Collection::getContenuPied();
|
60 |
return AppControleur::getContenuPied();
|
60 |
}
|
61 |
}
|
61 |
|
62 |
|