]> _ Git - cubedesigners-v7.git/commitdiff
wip #6549 @4
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 5 Dec 2023 11:40:39 +0000 (12:40 +0100)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 5 Dec 2023 11:40:39 +0000 (12:40 +0100)
51 files changed:
.gitignore [new file with mode: 0644]
.htaccess
framework/application/configs/application.ini
framework/application/configs/settings.1416239239.ini [new file with mode: 0644]
framework/application/configs/settings.1416321741.ini [new file with mode: 0644]
framework/application/configs/settings.1416322174.ini [new file with mode: 0644]
framework/application/configs/settings.1416323647.ini [new file with mode: 0644]
framework/application/configs/settings.1416323687.ini [new file with mode: 0644]
framework/application/configs/settings.1416323755.ini [new file with mode: 0644]
framework/application/configs/settings.1416323772.ini [new file with mode: 0644]
framework/application/configs/settings.1416323949.ini [new file with mode: 0644]
framework/application/configs/settings.1416324003.ini [new file with mode: 0644]
framework/application/configs/settings.1416326399.ini [new file with mode: 0644]
framework/application/configs/settings.1416327317.ini [new file with mode: 0644]
framework/application/configs/settings.1416327925.ini [new file with mode: 0644]
framework/application/configs/settings.1416328119.ini [new file with mode: 0644]
framework/application/configs/settings.1416416867.ini [new file with mode: 0644]
framework/application/configs/settings.1416580907.ini [new file with mode: 0644]
framework/application/configs/settings.1416581183.ini [new file with mode: 0644]
framework/application/configs/settings.1416581225.ini [new file with mode: 0644]
framework/application/configs/settings.1416581301.ini [new file with mode: 0644]
framework/application/configs/settings.1416581380.ini [new file with mode: 0644]
framework/application/configs/settings.1416581402.ini [new file with mode: 0644]
framework/application/configs/settings.1416581534.ini [new file with mode: 0644]
framework/application/configs/settings.1416595633.ini [new file with mode: 0644]
framework/application/configs/settings.1416600543.ini [new file with mode: 0644]
framework/application/configs/settings.1416836876.ini [new file with mode: 0644]
framework/application/configs/settings.1416914222.ini [new file with mode: 0644]
framework/application/configs/settings.1416914259.ini [new file with mode: 0644]
framework/application/configs/settings.1416914414.ini [new file with mode: 0644]
framework/application/configs/settings.1416941726.ini [new file with mode: 0644]
framework/application/configs/settings.1417005978.ini [new file with mode: 0644]
framework/application/configs/settings.1417006049.ini [new file with mode: 0644]
framework/application/configs/settings.1419607474.ini [new file with mode: 0644]
framework/application/configs/settings.1419607574.ini [new file with mode: 0644]
framework/application/configs/settings.1419607799.ini [new file with mode: 0644]
framework/application/configs/settings.1419860069.ini [new file with mode: 0644]
framework/application/configs/settings.1419860379.ini [new file with mode: 0644]
framework/application/configs/settings.1419861026.ini [new file with mode: 0644]
framework/application/configs/settings.1419861169.ini [new file with mode: 0644]
framework/application/configs/settings.1419861868.ini [new file with mode: 0644]
framework/application/configs/settings.1420798609.ini [new file with mode: 0644]
framework/application/configs/settings.1420798643.ini [new file with mode: 0644]
framework/application/configs/settings.1420809456.ini [new file with mode: 0644]
framework/application/forms/CMS/Sub/News.php [new file with mode: 0644]
framework/application/forms/CMS/Sub/News/New.php [new file with mode: 0644]
framework/languages/en.php
images/picto_footer_mail.png [new file with mode: 0644]
js/casestudies.js
js/common.js
less/casestudies_detail.less

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..0bcfcd4
--- /dev/null
@@ -0,0 +1,7 @@
+framework/cache
+framework/log
+framework/backup
+less/min
+js/min
+css/*.css
+css/min
\ No newline at end of file
index d173b7ffecbdc6a18deef94a4ac5b2d2bcde92eb..2c7f2e2c1165d2d0047eeed8d3c6fe6082f388d4 100644 (file)
--- a/.htaccess
+++ b/.htaccess
@@ -15,8 +15,6 @@
        RewriteEngine on
        RewriteBase /
        #
-    RewriteCond %{HTTPS} off
-    RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
        # Redirection to www. subdomain
        RewriteCond %{HTTP_HOST} =cubedesigners.fr
        RewriteRule ^(.*)$ https://www.cubedesigners.fr/$1 [R=301,L]
index dc22c00f186a74237f4c248a2ef16fd0ec683f90..976c16b7197014d041a26991f9b90613483af1a5 100644 (file)
@@ -22,10 +22,10 @@ session.adapter = cache
 webhost = www.cubedesigners.fr
 
 database.adapter = pdo_mysql
-database.params.host = localhost
-database.params.username = cubedesigners
-database.params.password = *arica*5
-database.params.dbname = cubev6
+database.params.host = cubedesigners-v7-mariadb
+database.params.username = root
+database.params.password = shEhdyg0ke8F48D1
+database.params.dbname = cubedesigners-v7
 
 seo.universalAnalytics = UA-4339912-1
 seo.google = google93c0129ef18a399d.html
@@ -56,7 +56,9 @@ privacy.analytics = 1
 [testing : production]
 dev = true
 
-database.params.dbname = cubev6dev1
+database.params.host = cubedesigners-v7-dev-mariadb
+database.params.password = wH8CTihwiyV7OnrD
+database.params.dbname = cubedesigners-v7-dev
 
 locales.fr = dev.cubedesigners.fr
 locales.en = dev.cubedesigners.com
diff --git a/framework/application/configs/settings.1416239239.ini b/framework/application/configs/settings.1416239239.ini
new file mode 100644 (file)
index 0000000..d46c1f4
--- /dev/null
@@ -0,0 +1,156 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners"
+longTitle.en = ""
+description.fr = ""
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2013-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le graphisme de l’exposition Mars pour la Cité de l’espace."
+actus.fr.actualites.1.date = "2013-07-16 00:00:00"
+actus.fr.actualites.1.texte = "Nous sommes fiers de vous présenter la boutique Fnac Disney Infinity !"
+actus.fr.actualites.2.date = "2013-07-07 00:00:00"
+actus.fr.actualites.2.texte = "Hercules lance la webcam HD Twist, design Cubedesigners. une webcam mini au pied original : flexible, en silicone tendre, elle se fixe partout !"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://fr-fr.facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://plus.google.com/108505338910338279554"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
diff --git a/framework/application/configs/settings.1416321741.ini b/framework/application/configs/settings.1416321741.ini
new file mode 100644 (file)
index 0000000..aa94732
--- /dev/null
@@ -0,0 +1,157 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners"
+longTitle.en = ""
+description.fr = ""
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2013-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le graphisme de l’exposition Mars pour la Cité de l’espace."
+actus.fr.actualites.1.date = "2013-07-16 00:00:00"
+actus.fr.actualites.1.texte = "Nous sommes fiers de vous présenter la boutique Fnac Disney Infinity !"
+actus.fr.actualites.2.date = "2013-07-07 00:00:00"
+actus.fr.actualites.2.texte = "Hercules lance la webcam HD Twist, design Cubedesigners. une webcam mini au pied original : flexible, en silicone tendre, elle se fixe partout !"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://fr-fr.facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416322174.ini b/framework/application/configs/settings.1416322174.ini
new file mode 100644 (file)
index 0000000..4f2613d
--- /dev/null
@@ -0,0 +1,160 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners"
+longTitle.en = ""
+description.fr = ""
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2013-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le graphisme de l’exposition Mars pour la Cité de l’espace."
+actus.fr.actualites.1.date = "2013-07-16 00:00:00"
+actus.fr.actualites.1.texte = "Nous sommes fiers de vous présenter la boutique Fnac Disney Infinity !"
+actus.fr.actualites.2.date = "2013-07-07 00:00:00"
+actus.fr.actualites.2.texte = "Hercules lance la webcam HD Twist, design Cubedesigners. une webcam mini au pied original : flexible, en silicone tendre, elle se fixe partout !"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://fr-fr.facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/channel/UCuxiIzuENyp90JxUFHvxbLg"
+followus.fr.reseauxsociaux.4.picto = false
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416323647.ini b/framework/application/configs/settings.1416323647.ini
new file mode 100644 (file)
index 0000000..de88170
--- /dev/null
@@ -0,0 +1,169 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners"
+longTitle.en = ""
+description.fr = ""
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2013-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le graphisme de l’exposition Mars pour la Cité de l’espace."
+actus.fr.actualites.1.date = "2013-07-16 00:00:00"
+actus.fr.actualites.1.texte = "Nous sommes fiers de vous présenter la boutique Fnac Disney Infinity !"
+actus.fr.actualites.2.date = "2013-07-07 00:00:00"
+actus.fr.actualites.2.texte = "Hercules lance la webcam HD Twist, design Cubedesigners. une webcam mini au pied original : flexible, en silicone tendre, elle se fixe partout !"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://fr-fr.facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/channel/UCuxiIzuENyp90JxUFHvxbLg"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b5c40-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416323687.ini b/framework/application/configs/settings.1416323687.ini
new file mode 100644 (file)
index 0000000..a3553ed
--- /dev/null
@@ -0,0 +1,169 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners"
+longTitle.en = ""
+description.fr = ""
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2013-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le graphisme de l’exposition Mars pour la Cité de l’espace."
+actus.fr.actualites.1.date = "2013-07-16 00:00:00"
+actus.fr.actualites.1.texte = "Nous sommes fiers de vous présenter la boutique Fnac Disney Infinity !"
+actus.fr.actualites.2.date = "2013-07-07 00:00:00"
+actus.fr.actualites.2.texte = "Hercules lance la webcam HD Twist, design Cubedesigners. une webcam mini au pied original : flexible, en silicone tendre, elle se fixe partout !"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://fr-fr.facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/channel/UCuxiIzuENyp90JxUFHvxbLg"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b623a-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416323755.ini b/framework/application/configs/settings.1416323755.ini
new file mode 100644 (file)
index 0000000..114e7ab
--- /dev/null
@@ -0,0 +1,169 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners"
+longTitle.en = ""
+description.fr = ""
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2013-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le graphisme de l’exposition Mars pour la Cité de l’espace."
+actus.fr.actualites.1.date = "2013-07-16 00:00:00"
+actus.fr.actualites.1.texte = "Nous sommes fiers de vous présenter la boutique Fnac Disney Infinity !"
+actus.fr.actualites.2.date = "2013-07-07 00:00:00"
+actus.fr.actualites.2.texte = "Hercules lance la webcam HD Twist, design Cubedesigners. une webcam mini au pied original : flexible, en silicone tendre, elle se fixe partout !"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://fr-fr.facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/channel/UCuxiIzuENyp90JxUFHvxbLg"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b6264-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416323772.ini b/framework/application/configs/settings.1416323772.ini
new file mode 100644 (file)
index 0000000..c3900e5
--- /dev/null
@@ -0,0 +1,169 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, multimédia et design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, web, multimédia et design produit située à Paris et Montpellier (création de site internet, installations interactives et motion graphics)."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2013-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le graphisme de l’exposition Mars pour la Cité de l’espace."
+actus.fr.actualites.1.date = "2013-07-16 00:00:00"
+actus.fr.actualites.1.texte = "Nous sommes fiers de vous présenter la boutique Fnac Disney Infinity !"
+actus.fr.actualites.2.date = "2013-07-07 00:00:00"
+actus.fr.actualites.2.texte = "Hercules lance la webcam HD Twist, design Cubedesigners. une webcam mini au pied original : flexible, en silicone tendre, elle se fixe partout !"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://fr-fr.facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/channel/UCuxiIzuENyp90JxUFHvxbLg"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b5c40-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416323949.ini b/framework/application/configs/settings.1416323949.ini
new file mode 100644 (file)
index 0000000..6eed999
--- /dev/null
@@ -0,0 +1,169 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, multimédia et design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, web, multimédia et design produit située à Paris et Montpellier (création de site internet, installations interactives et motion graphics)."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2013-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le graphisme de l’exposition Mars pour la Cité de l’espace."
+actus.fr.actualites.1.date = "2013-07-16 00:00:00"
+actus.fr.actualites.1.texte = "Nous sommes fiers de vous présenter la boutique Fnac Disney Infinity !"
+actus.fr.actualites.2.date = "2013-07-07 00:00:00"
+actus.fr.actualites.2.texte = "Hercules lance la webcam HD Twist, design Cubedesigners. une webcam mini au pied original : flexible, en silicone tendre, elle se fixe partout !"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://fr-fr.facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/channel/UCuxiIzuENyp90JxUFHvxbLg"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b623a-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416324003.ini b/framework/application/configs/settings.1416324003.ini
new file mode 100644 (file)
index 0000000..d983831
--- /dev/null
@@ -0,0 +1,169 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, multimédia et design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, web, multimédia et design produit située à Paris et Montpellier (création de site internet, installations interactives et motion graphics)."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2013-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le graphisme de l’exposition Mars pour la Cité de l’espace."
+actus.fr.actualites.1.date = "2013-07-16 00:00:00"
+actus.fr.actualites.1.texte = "Nous sommes fiers de vous présenter la boutique Fnac Disney Infinity !"
+actus.fr.actualites.2.date = "2013-07-07 00:00:00"
+actus.fr.actualites.2.texte = "Hercules lance la webcam HD Twist, design Cubedesigners. une webcam mini au pied original : flexible, en silicone tendre, elle se fixe partout !"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://fr-fr.facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/channel/UCuxiIzuENyp90JxUFHvxbLg"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b6368-youtube1.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416326399.ini b/framework/application/configs/settings.1416326399.ini
new file mode 100644 (file)
index 0000000..639d1f3
--- /dev/null
@@ -0,0 +1,169 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, multimédia et design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, web, multimédia et design produit située à Paris et Montpellier (création de site internet, installations interactives et motion graphics)."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2013-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le graphisme de l’exposition Mars pour la Cité de l’espace."
+actus.fr.actualites.1.date = "2013-07-16 00:00:00"
+actus.fr.actualites.1.texte = "Nous sommes fiers de vous présenter la boutique Fnac Disney Infinity !"
+actus.fr.actualites.2.date = "2013-07-07 00:00:00"
+actus.fr.actualites.2.texte = "Hercules lance la webcam HD Twist, design Cubedesigners. une webcam mini au pied original : flexible, en silicone tendre, elle se fixe partout !"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://fr-fr.facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/channel/UCuxiIzuENyp90JxUFHvxbLg"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416327317.ini b/framework/application/configs/settings.1416327317.ini
new file mode 100644 (file)
index 0000000..da41480
--- /dev/null
@@ -0,0 +1,169 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2013-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le graphisme de l’exposition Mars pour la Cité de l’espace."
+actus.fr.actualites.1.date = "2013-07-16 00:00:00"
+actus.fr.actualites.1.texte = "Nous sommes fiers de vous présenter la boutique Fnac Disney Infinity !"
+actus.fr.actualites.2.date = "2013-07-07 00:00:00"
+actus.fr.actualites.2.texte = "Hercules lance la webcam HD Twist, design Cubedesigners. une webcam mini au pied original : flexible, en silicone tendre, elle se fixe partout !"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://fr-fr.facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/channel/UCuxiIzuENyp90JxUFHvxbLg"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416327925.ini b/framework/application/configs/settings.1416327925.ini
new file mode 100644 (file)
index 0000000..2529d2a
--- /dev/null
@@ -0,0 +1,169 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2013-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le graphisme de l’exposition Mars pour la Cité de l’espace."
+actus.fr.actualites.1.date = "2013-07-16 00:00:00"
+actus.fr.actualites.1.texte = "Nous sommes fiers de vous présenter la boutique Fnac Disney Infinity !"
+actus.fr.actualites.2.date = "2013-07-07 00:00:00"
+actus.fr.actualites.2.texte = "Hercules lance la webcam HD Twist, design Cubedesigners. une webcam mini au pied original : flexible, en silicone tendre, elle se fixe partout !"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://fr-fr.facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416328119.ini b/framework/application/configs/settings.1416328119.ini
new file mode 100644 (file)
index 0000000..e165e46
--- /dev/null
@@ -0,0 +1,169 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2013-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le graphisme de l’exposition Mars pour la Cité de l’espace."
+actus.fr.actualites.1.date = "2013-07-16 00:00:00"
+actus.fr.actualites.1.texte = "Nous sommes fiers de vous présenter la boutique Fnac Disney Infinity !"
+actus.fr.actualites.2.date = "2013-07-07 00:00:00"
+actus.fr.actualites.2.texte = "Hercules lance la webcam HD Twist, design Cubedesigners. une webcam mini au pied original : flexible, en silicone tendre, elle se fixe partout !"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://fr-fr.facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b72f0-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416416867.ini b/framework/application/configs/settings.1416416867.ini
new file mode 100644 (file)
index 0000000..d18d474
--- /dev/null
@@ -0,0 +1,169 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2013-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le graphisme de l’exposition Mars pour la Cité de l’espace."
+actus.fr.actualites.1.date = "2013-07-16 00:00:00"
+actus.fr.actualites.1.texte = "Nous sommes fiers de vous présenter la boutique Fnac Disney Infinity !"
+actus.fr.actualites.2.date = "2013-07-07 00:00:00"
+actus.fr.actualites.2.texte = "Hercules lance la webcam HD Twist, design Cubedesigners. une webcam mini au pied original : flexible, en silicone tendre, elle se fixe partout !"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://fr-fr.facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416580907.ini b/framework/application/configs/settings.1416580907.ini
new file mode 100644 (file)
index 0000000..76984b3
--- /dev/null
@@ -0,0 +1,169 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2013-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le graphisme de l’exposition Mars pour la Cité de l’espace."
+actus.fr.actualites.1.date = "2013-07-16 00:00:00"
+actus.fr.actualites.1.texte = "Nous sommes fiers de vous présenter la boutique Fnac Disney Infinity !"
+actus.fr.actualites.2.date = "2013-07-07 00:00:00"
+actus.fr.actualites.2.texte = "Hercules lance la webcam HD Twist, design Cubedesigners. une webcam mini au pied original : flexible, en silicone tendre, elle se fixe partout !"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416581183.ini b/framework/application/configs/settings.1416581183.ini
new file mode 100644 (file)
index 0000000..76984b3
--- /dev/null
@@ -0,0 +1,169 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2013-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le graphisme de l’exposition Mars pour la Cité de l’espace."
+actus.fr.actualites.1.date = "2013-07-16 00:00:00"
+actus.fr.actualites.1.texte = "Nous sommes fiers de vous présenter la boutique Fnac Disney Infinity !"
+actus.fr.actualites.2.date = "2013-07-07 00:00:00"
+actus.fr.actualites.2.texte = "Hercules lance la webcam HD Twist, design Cubedesigners. une webcam mini au pied original : flexible, en silicone tendre, elle se fixe partout !"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416581225.ini b/framework/application/configs/settings.1416581225.ini
new file mode 100644 (file)
index 0000000..c1dfb88
--- /dev/null
@@ -0,0 +1,169 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2013-11-12 00:00:00"
+actus.fr.actualites.0.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.1.date = "2013-07-16 00:00:00"
+actus.fr.actualites.1.texte = "Nous sommes fiers de vous présenter la boutique Fnac Disney Infinity !"
+actus.fr.actualites.2.date = "2013-07-07 00:00:00"
+actus.fr.actualites.2.texte = "Hercules lance la webcam HD Twist, design Cubedesigners. une webcam mini au pied original : flexible, en silicone tendre, elle se fixe partout !"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416581301.ini b/framework/application/configs/settings.1416581301.ini
new file mode 100644 (file)
index 0000000..7a50e9a
--- /dev/null
@@ -0,0 +1,169 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2013-11-12 00:00:00"
+actus.fr.actualites.0.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.1.date = "2013-11-21 00:00:00"
+actus.fr.actualites.1.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.2.date = "2013-07-07 00:00:00"
+actus.fr.actualites.2.texte = "Hercules lance la webcam HD Twist, design Cubedesigners. une webcam mini au pied original : flexible, en silicone tendre, elle se fixe partout !"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416581380.ini b/framework/application/configs/settings.1416581380.ini
new file mode 100644 (file)
index 0000000..7a50e9a
--- /dev/null
@@ -0,0 +1,169 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2013-11-12 00:00:00"
+actus.fr.actualites.0.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.1.date = "2013-11-21 00:00:00"
+actus.fr.actualites.1.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.2.date = "2013-07-07 00:00:00"
+actus.fr.actualites.2.texte = "Hercules lance la webcam HD Twist, design Cubedesigners. une webcam mini au pied original : flexible, en silicone tendre, elle se fixe partout !"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416581402.ini b/framework/application/configs/settings.1416581402.ini
new file mode 100644 (file)
index 0000000..314cac5
--- /dev/null
@@ -0,0 +1,169 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2014-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.1.date = "2014-11-12 00:00:00"
+actus.fr.actualites.1.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.2.date = "2014-04-26 00:00:00"
+actus.fr.actualites.2.texte = "Nouvelle exposition pour la Cité de l’espace à Toulouse"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416581534.ini b/framework/application/configs/settings.1416581534.ini
new file mode 100644 (file)
index 0000000..314cac5
--- /dev/null
@@ -0,0 +1,169 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2014-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.1.date = "2014-11-12 00:00:00"
+actus.fr.actualites.1.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.2.date = "2014-04-26 00:00:00"
+actus.fr.actualites.2.texte = "Nouvelle exposition pour la Cité de l’espace à Toulouse"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416595633.ini b/framework/application/configs/settings.1416595633.ini
new file mode 100644 (file)
index 0000000..fc5ce73
--- /dev/null
@@ -0,0 +1,169 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2014-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.1.date = "2014-11-12 00:00:00"
+actus.fr.actualites.1.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.2.date = "2014-04-26 00:00:00"
+actus.fr.actualites.2.texte = "Nouvelle exposition pour la Cité de l’espace à Toulouse : Explorations extrêmes"
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416600543.ini b/framework/application/configs/settings.1416600543.ini
new file mode 100644 (file)
index 0000000..eb43b0c
--- /dev/null
@@ -0,0 +1,169 @@
+[production]
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2014-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.1.date = "2014-11-12 00:00:00"
+actus.fr.actualites.1.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.2.date = "2014-04-26 00:00:00"
+actus.fr.actualites.2.texte = "Nouvelle exposition pour la Cité de l’espace à Toulouse : Explorations extrêmes."
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416836876.ini b/framework/application/configs/settings.1416836876.ini
new file mode 100644 (file)
index 0000000..f18b871
--- /dev/null
@@ -0,0 +1,170 @@
+[production]
+localesEnabled.0 = "fr"
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2014-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.1.date = "2014-11-12 00:00:00"
+actus.fr.actualites.1.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.2.date = "2014-04-26 00:00:00"
+actus.fr.actualites.2.texte = "Nouvelle exposition pour la Cité de l’espace à Toulouse : Explorations extrêmes."
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés"
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416914222.ini b/framework/application/configs/settings.1416914222.ini
new file mode 100644 (file)
index 0000000..0a3683f
--- /dev/null
@@ -0,0 +1,170 @@
+[production]
+localesEnabled.0 = "fr"
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2014-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.1.date = "2014-11-12 00:00:00"
+actus.fr.actualites.1.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.2.date = "2014-04-26 00:00:00"
+actus.fr.actualites.2.texte = "Nouvelle exposition pour la Cité de l’espace à Toulouse : Explorations extrêmes."
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés. "
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416914259.ini b/framework/application/configs/settings.1416914259.ini
new file mode 100644 (file)
index 0000000..0a3683f
--- /dev/null
@@ -0,0 +1,170 @@
+[production]
+localesEnabled.0 = "fr"
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2014-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.1.date = "2014-11-12 00:00:00"
+actus.fr.actualites.1.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.2.date = "2014-04-26 00:00:00"
+actus.fr.actualites.2.texte = "Nouvelle exposition pour la Cité de l’espace à Toulouse : Explorations extrêmes."
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés. "
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416914414.ini b/framework/application/configs/settings.1416914414.ini
new file mode 100644 (file)
index 0000000..0a3683f
--- /dev/null
@@ -0,0 +1,170 @@
+[production]
+localesEnabled.0 = "fr"
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2014-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.1.date = "2014-11-12 00:00:00"
+actus.fr.actualites.1.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.2.date = "2014-04-26 00:00:00"
+actus.fr.actualites.2.texte = "Nouvelle exposition pour la Cité de l’espace à Toulouse : Explorations extrêmes."
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés. "
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1416941726.ini b/framework/application/configs/settings.1416941726.ini
new file mode 100644 (file)
index 0000000..0a3683f
--- /dev/null
@@ -0,0 +1,170 @@
+[production]
+localesEnabled.0 = "fr"
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2014-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.1.date = "2014-11-12 00:00:00"
+actus.fr.actualites.1.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.2.date = "2014-04-26 00:00:00"
+actus.fr.actualites.2.texte = "Nouvelle exposition pour la Cité de l’espace à Toulouse : Explorations extrêmes."
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Pinterest"
+followus.fr.reseauxsociaux.3.url = "https://www.pinterest.com/"
+followus.fr.reseauxsociaux.3.color = "#ca111a"
+followus.fr.reseauxsociaux.3.picto.0 = "52fa1dbc-picto-pi.svg"
+followus.fr.reseauxsociaux.4.titre = "Youtube"
+followus.fr.reseauxsociaux.4.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.4.color = "#c22528"
+followus.fr.reseauxsociaux.4.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés. "
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1417005978.ini b/framework/application/configs/settings.1417005978.ini
new file mode 100644 (file)
index 0000000..0f9fbfc
--- /dev/null
@@ -0,0 +1,166 @@
+[production]
+localesEnabled.0 = "fr"
+tags = ""
+longTitle.fr = "Cubedesigners // Agence de design global // Graphisme, web, design produit // Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2014-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.1.date = "2014-11-12 00:00:00"
+actus.fr.actualites.1.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.2.date = "2014-04-26 00:00:00"
+actus.fr.actualites.2.texte = "Nouvelle exposition pour la Cité de l’espace à Toulouse : Explorations extrêmes."
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Youtube"
+followus.fr.reseauxsociaux.3.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.3.color = "#c22528"
+followus.fr.reseauxsociaux.3.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés. "
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1417006049.ini b/framework/application/configs/settings.1417006049.ini
new file mode 100644 (file)
index 0000000..4bc5a25
--- /dev/null
@@ -0,0 +1,168 @@
+[production]
+localesEnabled.0 = "fr"
+logoTitle = "Cubedesigners"
+baseline = "Agence de création sur mesure"
+tags = ""
+longTitle.fr = "Cubedesigners / Agence de design global / Graphisme, web, design produit / Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2014-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.1.date = "2014-11-12 00:00:00"
+actus.fr.actualites.1.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.2.date = "2014-04-26 00:00:00"
+actus.fr.actualites.2.texte = "Nouvelle exposition pour la Cité de l’espace à Toulouse : Explorations extrêmes."
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Youtube"
+followus.fr.reseauxsociaux.3.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.3.color = "#c22528"
+followus.fr.reseauxsociaux.3.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés. "
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1419607474.ini b/framework/application/configs/settings.1419607474.ini
new file mode 100644 (file)
index 0000000..080f8c7
--- /dev/null
@@ -0,0 +1,170 @@
+[production]
+localesEnabled.0 = "fr"
+tags = ""
+longTitle.fr = "Cubedesigners / Agence de design global / Graphisme, web, design produit / Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+logoTitle.fr = "Cubedesigners"
+logoTitle.en = ""
+baseline.fr = "Agence de création sur mesure"
+baseline.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2014-11-21 00:00:00"
+actus.fr.actualites.0.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.1.date = "2014-11-12 00:00:00"
+actus.fr.actualites.1.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.2.date = "2014-04-26 00:00:00"
+actus.fr.actualites.2.texte = "Nouvelle exposition pour la Cité de l’espace à Toulouse : Explorations extrêmes."
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Youtube"
+followus.fr.reseauxsociaux.3.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.3.color = "#c22528"
+followus.fr.reseauxsociaux.3.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés. "
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1419607574.ini b/framework/application/configs/settings.1419607574.ini
new file mode 100644 (file)
index 0000000..c4ed167
--- /dev/null
@@ -0,0 +1,173 @@
+[production]
+localesEnabled.0 = "fr"
+tags = ""
+longTitle.fr = "Cubedesigners / Agence de design global / Graphisme, web, design produit / Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+logoTitle.fr = "Cubedesigners"
+logoTitle.en = ""
+baseline.fr = "Agence de création sur mesure"
+baseline.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2014-12-26 16:23:34"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le site internet Enko Running Shoes
+http://www.enko-running-shoes.com/"
+actus.fr.actualites.1.date = "2014-11-21 00:00:00"
+actus.fr.actualites.1.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.2.date = "2014-11-12 00:00:00"
+actus.fr.actualites.2.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.3.date = "2014-04-26 00:00:00"
+actus.fr.actualites.3.texte = "Nouvelle exposition pour la Cité de l’espace à Toulouse : Explorations extrêmes."
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Youtube"
+followus.fr.reseauxsociaux.3.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.3.color = "#c22528"
+followus.fr.reseauxsociaux.3.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés. "
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1419607799.ini b/framework/application/configs/settings.1419607799.ini
new file mode 100644 (file)
index 0000000..c4ed167
--- /dev/null
@@ -0,0 +1,173 @@
+[production]
+localesEnabled.0 = "fr"
+tags = ""
+longTitle.fr = "Cubedesigners / Agence de design global / Graphisme, web, design produit / Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+logoTitle.fr = "Cubedesigners"
+logoTitle.en = ""
+baseline.fr = "Agence de création sur mesure"
+baseline.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2014-12-26 16:23:34"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le site internet Enko Running Shoes
+http://www.enko-running-shoes.com/"
+actus.fr.actualites.1.date = "2014-11-21 00:00:00"
+actus.fr.actualites.1.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.2.date = "2014-11-12 00:00:00"
+actus.fr.actualites.2.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.3.date = "2014-04-26 00:00:00"
+actus.fr.actualites.3.texte = "Nouvelle exposition pour la Cité de l’espace à Toulouse : Explorations extrêmes."
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Youtube"
+followus.fr.reseauxsociaux.3.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.3.color = "#c22528"
+followus.fr.reseauxsociaux.3.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés. "
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1419860069.ini b/framework/application/configs/settings.1419860069.ini
new file mode 100644 (file)
index 0000000..0869105
--- /dev/null
@@ -0,0 +1,171 @@
+[production]
+localesEnabled.0 = "fr"
+tags = ""
+longTitle.fr = "Cubedesigners / Agence de design global / Graphisme, web, design produit / Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+logoTitle.fr = "Cubedesigners"
+logoTitle.en = ""
+baseline.fr = "Agence de création sur mesure"
+baseline.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2014-12-26 16:23:34"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le site internet Enko Running Shoes
+http://www.enko-running-shoes.com/"
+actus.fr.actualites.1.date = "2014-11-21 00:00:00"
+actus.fr.actualites.1.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.2.date = "2014-11-12 00:00:00"
+actus.fr.actualites.2.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Youtube"
+followus.fr.reseauxsociaux.3.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.3.color = "#c22528"
+followus.fr.reseauxsociaux.3.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés. "
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1419860379.ini b/framework/application/configs/settings.1419860379.ini
new file mode 100644 (file)
index 0000000..99cf38d
--- /dev/null
@@ -0,0 +1,172 @@
+[production]
+localesEnabled.0 = "fr"
+tags = ""
+longTitle.fr = "Cubedesigners / Agence de design global / Graphisme, web, design produit / Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+logoTitle.fr = "Cubedesigners"
+logoTitle.en = ""
+baseline.fr = "Agence de création sur mesure"
+baseline.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2014-12-26 16:23:34"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le site internet [Enko Running Shoes|http://www.enko-running-shoes.com/]
+
+"
+actus.fr.actualites.1.date = "2014-11-21 00:00:00"
+actus.fr.actualites.1.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.2.date = "2014-11-12 00:00:00"
+actus.fr.actualites.2.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Youtube"
+followus.fr.reseauxsociaux.3.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.3.color = "#c22528"
+followus.fr.reseauxsociaux.3.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés. "
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1419861026.ini b/framework/application/configs/settings.1419861026.ini
new file mode 100644 (file)
index 0000000..d504045
--- /dev/null
@@ -0,0 +1,188 @@
+[production]
+localesEnabled.0 = "fr"
+tags = ""
+longTitle.fr = "Cubedesigners / Agence de design global / Graphisme, web, design produit / Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+logoTitle.fr = "Cubedesigners"
+logoTitle.en = ""
+baseline.fr = "Agence de création sur mesure"
+baseline.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2014-12-26 16:23:34"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le site internet Enko Running Shoes
+
+"
+actus.fr.actualites.0.link.url = "http://www.enko-running-shoes.com/"
+actus.fr.actualites.0.link.page = ""
+actus.fr.actualites.1.date = "2014-11-21 00:00:00"
+actus.fr.actualites.1.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.1.link.url = ""
+actus.fr.actualites.1.link.page = ""
+actus.fr.actualites.2.date = "2014-11-12 00:00:00"
+actus.fr.actualites.2.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.2.link.url = ""
+actus.fr.actualites.2.link.page = ""
+actus.en.actualites.0.date = "2014-01-20 12:19:32"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.0.link.url = ""
+actus.en.actualites.0.link.page = ""
+actus.en.actualites.1.date = "2014-01-20 12:19:32"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.1.link.url = ""
+actus.en.actualites.1.link.page = ""
+actus.en.actualites.2.date = "2014-01-20 12:19:32"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.2.link.url = ""
+actus.en.actualites.2.link.page = ""
+actus.en.actualites.3.date = "2014-01-20 12:19:32"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.3.link.url = ""
+actus.en.actualites.3.link.page = ""
+actus.en.actualites.4.date = "2014-01-20 12:19:32"
+actus.en.actualites.4.texte = ""
+actus.en.actualites.4.link.url = ""
+actus.en.actualites.4.link.page = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Youtube"
+followus.fr.reseauxsociaux.3.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.3.color = "#c22528"
+followus.fr.reseauxsociaux.3.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés. "
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1419861169.ini b/framework/application/configs/settings.1419861169.ini
new file mode 100644 (file)
index 0000000..1172c0a
--- /dev/null
@@ -0,0 +1,188 @@
+[production]
+localesEnabled.0 = "fr"
+tags = ""
+longTitle.fr = "Cubedesigners / Agence de design global / Graphisme, web, design produit / Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+logoTitle.fr = "Cubedesigners"
+logoTitle.en = ""
+baseline.fr = "Agence de création sur mesure"
+baseline.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2014-12-26 12:12:12"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le site internet Enko Running Shoes
+
+"
+actus.fr.actualites.0.link.url = "http://www.enko-running-shoes.com/"
+actus.fr.actualites.0.link.page = ""
+actus.fr.actualites.1.date = "2014-11-21 12:12:12"
+actus.fr.actualites.1.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.1.link.url = ""
+actus.fr.actualites.1.link.page = ""
+actus.fr.actualites.2.date = "2014-11-12 12:12:12"
+actus.fr.actualites.2.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.2.link.url = ""
+actus.fr.actualites.2.link.page = ""
+actus.en.actualites.0.date = "2014-01-20 12:12:12"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.0.link.url = ""
+actus.en.actualites.0.link.page = ""
+actus.en.actualites.1.date = "2014-01-20 12:12:12"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.1.link.url = ""
+actus.en.actualites.1.link.page = ""
+actus.en.actualites.2.date = "2014-01-20 12:12:12"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.2.link.url = ""
+actus.en.actualites.2.link.page = ""
+actus.en.actualites.3.date = "2014-01-20 12:12:12"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.3.link.url = ""
+actus.en.actualites.3.link.page = ""
+actus.en.actualites.4.date = "2014-01-20 12:12:12"
+actus.en.actualites.4.texte = ""
+actus.en.actualites.4.link.url = ""
+actus.en.actualites.4.link.page = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Youtube"
+followus.fr.reseauxsociaux.3.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.3.color = "#c22528"
+followus.fr.reseauxsociaux.3.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés. "
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1419861868.ini b/framework/application/configs/settings.1419861868.ini
new file mode 100644 (file)
index 0000000..a8a77f7
--- /dev/null
@@ -0,0 +1,188 @@
+[production]
+localesEnabled.0 = "fr"
+tags = ""
+longTitle.fr = "Cubedesigners / Agence de design global / Graphisme, web, design produit / Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+logoTitle.fr = "Cubedesigners"
+logoTitle.en = ""
+baseline.fr = "Agence de création sur mesure"
+baseline.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2014-12-26 12:12:12"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le site internet Enko Running Shoes
+
+"
+actus.fr.actualites.0.link.url = "http://www.enko-running-shoes.com/"
+actus.fr.actualites.0.link.page = ""
+actus.fr.actualites.1.date = "2014-11-21 12:12:12"
+actus.fr.actualites.1.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.1.link.url = ""
+actus.fr.actualites.1.link.page = ""
+actus.fr.actualites.2.date = "2014-11-12 12:12:12"
+actus.fr.actualites.2.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.2.link.url = ""
+actus.fr.actualites.2.link.page = "3/139"
+actus.en.actualites.0.date = "2014-01-20 12:12:12"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.0.link.url = ""
+actus.en.actualites.0.link.page = ""
+actus.en.actualites.1.date = "2014-01-20 12:12:12"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.1.link.url = ""
+actus.en.actualites.1.link.page = ""
+actus.en.actualites.2.date = "2014-01-20 12:12:12"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.2.link.url = ""
+actus.en.actualites.2.link.page = ""
+actus.en.actualites.3.date = "2014-01-20 12:12:12"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.3.link.url = ""
+actus.en.actualites.3.link.page = ""
+actus.en.actualites.4.date = "2014-01-20 12:12:12"
+actus.en.actualites.4.texte = ""
+actus.en.actualites.4.link.url = ""
+actus.en.actualites.4.link.page = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Youtube"
+followus.fr.reseauxsociaux.3.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.3.color = "#c22528"
+followus.fr.reseauxsociaux.3.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés. "
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1420798609.ini b/framework/application/configs/settings.1420798609.ini
new file mode 100644 (file)
index 0000000..b03c0d0
--- /dev/null
@@ -0,0 +1,188 @@
+[production]
+localesEnabled.0 = "fr"
+tags = ""
+longTitle.fr = "Cubedesigners / Agence web, graphisme, design / Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+logoTitle.fr = "Cubedesigners"
+logoTitle.en = ""
+baseline.fr = "Agence de création sur mesure"
+baseline.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2014-12-26 12:12:12"
+actus.fr.actualites.0.texte = "Cubedesigners réalise le site internet Enko Running Shoes
+
+"
+actus.fr.actualites.0.link.url = "http://www.enko-running-shoes.com/"
+actus.fr.actualites.0.link.page = ""
+actus.fr.actualites.1.date = "2014-11-21 12:12:12"
+actus.fr.actualites.1.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.1.link.url = ""
+actus.fr.actualites.1.link.page = ""
+actus.fr.actualites.2.date = "2014-11-12 12:12:12"
+actus.fr.actualites.2.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.2.link.url = ""
+actus.fr.actualites.2.link.page = "3/139"
+actus.en.actualites.0.date = "2014-01-20 12:12:12"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.0.link.url = ""
+actus.en.actualites.0.link.page = ""
+actus.en.actualites.1.date = "2014-01-20 12:12:12"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.1.link.url = ""
+actus.en.actualites.1.link.page = ""
+actus.en.actualites.2.date = "2014-01-20 12:12:12"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.2.link.url = ""
+actus.en.actualites.2.link.page = ""
+actus.en.actualites.3.date = "2014-01-20 12:12:12"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.3.link.url = ""
+actus.en.actualites.3.link.page = ""
+actus.en.actualites.4.date = "2014-01-20 12:12:12"
+actus.en.actualites.4.texte = ""
+actus.en.actualites.4.link.url = ""
+actus.en.actualites.4.link.page = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Youtube"
+followus.fr.reseauxsociaux.3.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.3.color = "#c22528"
+followus.fr.reseauxsociaux.3.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés. "
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1420798643.ini b/framework/application/configs/settings.1420798643.ini
new file mode 100644 (file)
index 0000000..0b699dc
--- /dev/null
@@ -0,0 +1,192 @@
+[production]
+localesEnabled.0 = "fr"
+tags = ""
+longTitle.fr = "Cubedesigners / Agence web, graphisme, design / Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+logoTitle.fr = "Cubedesigners"
+logoTitle.en = ""
+baseline.fr = "Agence de création sur mesure"
+baseline.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2015-01-09 12:12:12"
+actus.fr.actualites.0.texte = "Cubedesigners réalise trois nouveaux sites liés : la maison de retraite Yves Couzy, le restaurant César & Léonie, et la résidence seniors Pavillon Madeleine."
+actus.fr.actualites.0.link.url = "http://www.mdryvescouzy.com/"
+actus.fr.actualites.0.link.page = ""
+actus.fr.actualites.1.date = "2014-12-26 12:12:12"
+actus.fr.actualites.1.texte = "Cubedesigners réalise le site internet Enko Running Shoes
+
+"
+actus.fr.actualites.1.link.url = "http://www.enko-running-shoes.com/"
+actus.fr.actualites.1.link.page = ""
+actus.fr.actualites.2.date = "2014-11-21 12:12:12"
+actus.fr.actualites.2.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.2.link.url = ""
+actus.fr.actualites.2.link.page = ""
+actus.fr.actualites.3.date = "2014-11-12 12:12:12"
+actus.fr.actualites.3.texte = "Cubedesigners réalise les supports de communication de la Cité de l'espace pour la journée d’atterrissage de Philae sur la comète Tchouri."
+actus.fr.actualites.3.link.url = ""
+actus.fr.actualites.3.link.page = "3/139"
+actus.en.actualites.0.date = "2014-01-20 12:12:12"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.0.link.url = ""
+actus.en.actualites.0.link.page = ""
+actus.en.actualites.1.date = "2014-01-20 12:12:12"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.1.link.url = ""
+actus.en.actualites.1.link.page = ""
+actus.en.actualites.2.date = "2014-01-20 12:12:12"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.2.link.url = ""
+actus.en.actualites.2.link.page = ""
+actus.en.actualites.3.date = "2014-01-20 12:12:12"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.3.link.url = ""
+actus.en.actualites.3.link.page = ""
+actus.en.actualites.4.date = "2014-01-20 12:12:12"
+actus.en.actualites.4.texte = ""
+actus.en.actualites.4.link.url = ""
+actus.en.actualites.4.link.page = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Youtube"
+followus.fr.reseauxsociaux.3.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.3.color = "#c22528"
+followus.fr.reseauxsociaux.3.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés. "
+copyright.en = ""
+
diff --git a/framework/application/configs/settings.1420809456.ini b/framework/application/configs/settings.1420809456.ini
new file mode 100644 (file)
index 0000000..7b32c9a
--- /dev/null
@@ -0,0 +1,188 @@
+[production]
+localesEnabled.0 = "fr"
+tags = ""
+longTitle.fr = "Cubedesigners / Agence web, graphisme, design / Paris Montpellier"
+longTitle.en = ""
+description.fr = "Cubedesigners est une agence de Design global : graphisme, sites internet et design produit située à Paris et Montpellier."
+description.en = ""
+logoTitle.fr = "Cubedesigners"
+logoTitle.en = ""
+baseline.fr = "Agence de création sur mesure"
+baseline.en = ""
+contact.fr.bloc = "Pour toute information,
+un email unique : [contact@cubedesigners.com|mailto:contact@cubedesigners.com]
+l’agence concernée vous répondra dans les plus brefs délais."
+contact.fr.bureaux.0.coordonnees.nom = "Agence de Paris"
+contact.fr.bureaux.0.coordonnees.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.coordonnees.code_postal = "75005"
+contact.fr.bureaux.0.coordonnees.ville = "Paris"
+contact.fr.bureaux.0.coordonnees.pays = "FR"
+contact.fr.bureaux.0.coordonnees.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.coordonnees.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.0.map.zoom = 15
+contact.fr.bureaux.0.map.googleLink = "https://maps.google.com/maps?q=46+Rue+de+la+Clef,Paris,France"
+contact.fr.bureaux.0.map.centre.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.map.centre.code_postal = "75005"
+contact.fr.bureaux.0.map.centre.ville = "Paris"
+contact.fr.bureaux.0.map.centre.pays = "FR"
+contact.fr.bureaux.0.markers.0.nom = "Agence de Paris"
+contact.fr.bureaux.0.markers.0.adresse = "46 Rue de la Clef"
+contact.fr.bureaux.0.markers.0.code_postal = "75005"
+contact.fr.bureaux.0.markers.0.ville = "Paris"
+contact.fr.bureaux.0.markers.0.pays = "FR"
+contact.fr.bureaux.0.markers.0.tel = "(+33) 1 44 24 18 53"
+contact.fr.bureaux.0.markers.0.fax = "(+33) 1 83 64 34 71"
+contact.fr.bureaux.0.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.coordonnees.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.coordonnees.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.coordonnees.code_postal = "34000"
+contact.fr.bureaux.1.coordonnees.ville = "Montpellier"
+contact.fr.bureaux.1.coordonnees.pays = "FR"
+contact.fr.bureaux.1.coordonnees.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.coordonnees.icon.0 = "52dfd1dd-pointeur.png"
+contact.fr.bureaux.1.map.zoom = 15
+contact.fr.bureaux.1.map.googleLink = "https://maps.google.com/maps?q=12+Bis+Rue+du+G%C3%A9n%C3%A9ral+Maurin,Montpellier,France"
+contact.fr.bureaux.1.map.centre.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.map.centre.code_postal = "34000"
+contact.fr.bureaux.1.map.centre.ville = "Montpellier"
+contact.fr.bureaux.1.map.centre.pays = "FR"
+contact.fr.bureaux.1.markers.0.nom = "Agence de Montpellier"
+contact.fr.bureaux.1.markers.0.adresse = "12 Bis Rue du Général Maurin"
+contact.fr.bureaux.1.markers.0.code_postal = "34000 "
+contact.fr.bureaux.1.markers.0.ville = "Montpellier"
+contact.fr.bureaux.1.markers.0.pays = "FR"
+contact.fr.bureaux.1.markers.0.tel = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.fax = "(+33) 4 67 02 71 47"
+contact.fr.bureaux.1.markers.0.icon.0 = "52dfd1dd-pointeur.png"
+contact.en.bloc = ""
+contact.en.bureaux.0.coordonnees.nom = ""
+contact.en.bureaux.0.coordonnees.adresse = ""
+contact.en.bureaux.0.coordonnees.code_postal = ""
+contact.en.bureaux.0.coordonnees.ville = ""
+contact.en.bureaux.0.coordonnees.pays = "FR"
+contact.en.bureaux.0.coordonnees.tel = ""
+contact.en.bureaux.0.coordonnees.fax = ""
+contact.en.bureaux.0.coordonnees.icon = false
+contact.en.bureaux.0.map.zoom = 0
+contact.en.bureaux.0.map.googleLink = ""
+contact.en.bureaux.0.map.centre.adresse = ""
+contact.en.bureaux.0.map.centre.code_postal = ""
+contact.en.bureaux.0.map.centre.ville = ""
+contact.en.bureaux.0.map.centre.pays = "FR"
+contact.en.bureaux.0.markers.0.nom = ""
+contact.en.bureaux.0.markers.0.adresse = ""
+contact.en.bureaux.0.markers.0.code_postal = ""
+contact.en.bureaux.0.markers.0.ville = ""
+contact.en.bureaux.0.markers.0.pays = "FR"
+contact.en.bureaux.0.markers.0.tel = ""
+contact.en.bureaux.0.markers.0.fax = ""
+contact.en.bureaux.0.markers.0.icon = false
+contact.en.bureaux.0.markers.1.nom = ""
+contact.en.bureaux.0.markers.1.adresse = ""
+contact.en.bureaux.0.markers.1.code_postal = ""
+contact.en.bureaux.0.markers.1.ville = ""
+contact.en.bureaux.0.markers.1.pays = "FR"
+contact.en.bureaux.0.markers.1.tel = ""
+contact.en.bureaux.0.markers.1.fax = ""
+contact.en.bureaux.0.markers.1.icon = false
+contact.en.bureaux.1.coordonnees.nom = ""
+contact.en.bureaux.1.coordonnees.adresse = ""
+contact.en.bureaux.1.coordonnees.code_postal = ""
+contact.en.bureaux.1.coordonnees.ville = ""
+contact.en.bureaux.1.coordonnees.pays = "FR"
+contact.en.bureaux.1.coordonnees.tel = ""
+contact.en.bureaux.1.coordonnees.fax = ""
+contact.en.bureaux.1.coordonnees.icon = false
+contact.en.bureaux.1.map.zoom = 0
+contact.en.bureaux.1.map.googleLink = ""
+contact.en.bureaux.1.map.centre.adresse = ""
+contact.en.bureaux.1.map.centre.code_postal = ""
+contact.en.bureaux.1.map.centre.ville = ""
+contact.en.bureaux.1.map.centre.pays = "FR"
+contact.en.bureaux.1.markers.0.nom = ""
+contact.en.bureaux.1.markers.0.adresse = ""
+contact.en.bureaux.1.markers.0.code_postal = ""
+contact.en.bureaux.1.markers.0.ville = ""
+contact.en.bureaux.1.markers.0.pays = "FR"
+contact.en.bureaux.1.markers.0.tel = ""
+contact.en.bureaux.1.markers.0.fax = ""
+contact.en.bureaux.1.markers.0.icon = false
+contact.en.bureaux.1.markers.1.nom = ""
+contact.en.bureaux.1.markers.1.adresse = ""
+contact.en.bureaux.1.markers.1.code_postal = ""
+contact.en.bureaux.1.markers.1.ville = ""
+contact.en.bureaux.1.markers.1.pays = "FR"
+contact.en.bureaux.1.markers.1.tel = ""
+contact.en.bureaux.1.markers.1.fax = ""
+contact.en.bureaux.1.markers.1.icon = false
+actus.fr.actualites.0.date = "2015-01-09 12:12:12"
+actus.fr.actualites.0.texte = "Cubedesigners réalise trois nouveaux sites liés : la maison de retraite Yves Couzy, le restaurant César & Léonie, et la résidence seniors Pavillon Madeleine."
+actus.fr.actualites.0.link.url = "http://www.mdryvescouzy.com/"
+actus.fr.actualites.0.link.page = ""
+actus.fr.actualites.1.date = "2014-12-26 12:12:12"
+actus.fr.actualites.1.texte = "Cubedesigners réalise le site internet Enko Running Shoes
+
+"
+actus.fr.actualites.1.link.url = "http://www.enko-running-shoes.com/"
+actus.fr.actualites.1.link.page = ""
+actus.fr.actualites.2.date = "2014-11-21 12:12:12"
+actus.fr.actualites.2.texte = "Bienvenue sur notre nouveau site !"
+actus.fr.actualites.2.link.url = ""
+actus.fr.actualites.2.link.page = ""
+actus.en.actualites.0.date = "2014-01-20 12:12:12"
+actus.en.actualites.0.texte = ""
+actus.en.actualites.0.link.url = ""
+actus.en.actualites.0.link.page = ""
+actus.en.actualites.1.date = "2014-01-20 12:12:12"
+actus.en.actualites.1.texte = ""
+actus.en.actualites.1.link.url = ""
+actus.en.actualites.1.link.page = ""
+actus.en.actualites.2.date = "2014-01-20 12:12:12"
+actus.en.actualites.2.texte = ""
+actus.en.actualites.2.link.url = ""
+actus.en.actualites.2.link.page = ""
+actus.en.actualites.3.date = "2014-01-20 12:12:12"
+actus.en.actualites.3.texte = ""
+actus.en.actualites.3.link.url = ""
+actus.en.actualites.3.link.page = ""
+actus.en.actualites.4.date = "2014-01-20 12:12:12"
+actus.en.actualites.4.texte = ""
+actus.en.actualites.4.link.url = ""
+actus.en.actualites.4.link.page = ""
+followus.fr.reseauxsociaux.0.titre = "Facebook"
+followus.fr.reseauxsociaux.0.url = "https://facebook.com/Cubedesigners"
+followus.fr.reseauxsociaux.0.color = "#39599f"
+followus.fr.reseauxsociaux.0.picto.0 = "52fa1da5-picto-fb.svg"
+followus.fr.reseauxsociaux.1.titre = "Twitter"
+followus.fr.reseauxsociaux.1.url = "https://twitter.com/Cubedesigners"
+followus.fr.reseauxsociaux.1.color = "#45b0e3"
+followus.fr.reseauxsociaux.1.picto.0 = "52fa1dad-picto-tw.svg"
+followus.fr.reseauxsociaux.2.titre = "Google Plus"
+followus.fr.reseauxsociaux.2.url = "https://www.google.com/+Cubedesigners"
+followus.fr.reseauxsociaux.2.color = "#e64405"
+followus.fr.reseauxsociaux.2.picto.0 = "52fa1db5-picto-gplus.svg"
+followus.fr.reseauxsociaux.3.titre = "Youtube"
+followus.fr.reseauxsociaux.3.url = "https://www.youtube.com/user/Cubedesigners"
+followus.fr.reseauxsociaux.3.color = "#c22528"
+followus.fr.reseauxsociaux.3.picto.0 = "546b73b4-546b63a0-youtube.svg"
+followus.en.reseauxsociaux.0.titre = ""
+followus.en.reseauxsociaux.0.url = ""
+followus.en.reseauxsociaux.0.color = false
+followus.en.reseauxsociaux.0.picto = false
+followus.en.reseauxsociaux.1.titre = ""
+followus.en.reseauxsociaux.1.url = ""
+followus.en.reseauxsociaux.1.color = false
+followus.en.reseauxsociaux.1.picto = false
+followus.en.reseauxsociaux.2.titre = ""
+followus.en.reseauxsociaux.2.url = ""
+followus.en.reseauxsociaux.2.color = false
+followus.en.reseauxsociaux.2.picto = false
+followus.en.reseauxsociaux.3.titre = ""
+followus.en.reseauxsociaux.3.url = ""
+followus.en.reseauxsociaux.3.color = false
+followus.en.reseauxsociaux.3.picto = false
+copyright.fr = "Copyright © Cubedesigners. Tous droits réservés. "
+copyright.en = ""
+
diff --git a/framework/application/forms/CMS/Sub/News.php b/framework/application/forms/CMS/Sub/News.php
new file mode 100644 (file)
index 0000000..ac5280b
--- /dev/null
@@ -0,0 +1,15 @@
+<?php
+
+class Cubedesigners_Form_CMS_Sub_News extends CubeIT_Form_SubForm {
+
+    public function init() {
+        parent::init();
+
+        $actus = new Cubedesigners_Form_CMS_Sub_News_News('actualites');
+        $actus->setLegend('Actualités');
+        $this->addSubForm($actus, 'actualites');
+    }
+
+}
+
+?>
diff --git a/framework/application/forms/CMS/Sub/News/New.php b/framework/application/forms/CMS/Sub/News/New.php
new file mode 100644 (file)
index 0000000..991983a
--- /dev/null
@@ -0,0 +1,23 @@
+<?php
+
+class Cubedesigners_Form_CMS_Sub_News_New extends CubeIT_Form_SubForm {
+
+       public function init() {
+               parent::init();
+
+               $date = new CubeIT_Form_Element_Date('date');
+               $date->setLabel('Date');
+               $date->setPrecision(CubeIT_Date::DAY);
+               $this->addElement($date);
+
+               $texte = new CubeIT_Form_Element_Markitup_Basic('texte');
+               $texte->setLabel('Texte');
+               $this->addElement($texte);
+
+               $lien = new CubeIT_Form_Element_Link();
+               $lien->setLabel('Lien');
+               $lien->labelEnabled(false);
+               $this->addSubForm($lien, 'link');
+       }
+
+}
index e5913406184eef2baedf7267f095abf05c8e1066..2000890719db5047e7b73d88001e12a4093a531c 100644 (file)
@@ -1,4 +1,46 @@
 <?php
 $translations = array (
-
+  'Gestion des actualités' => 'Manage the news',
+  'Header style (detail page)' => 'Header style (detail page)',
+  'Date' => 'Date',
+  'Contents' => 'Content',
+  'Lien' => 'Link',
+  'Actualités' => 'News',
+  'Nouvelle actualité' => 'New news',
+  'Edition de l\'actualité du « $date »' => 'Change the news of « $date »',
+  'Nom' => 'Last Name',
+  'Categories' => 'Categories',
+  'Créer une catégorie' => 'Create a category',
+  'Edition de la catégorie « %s »' => 'Change the category « %s »',
+  'Mention vie privée' => 'Privacy statement',
+  'Tags' => 'Tags',
+  'Technologies' => 'Technologies',
+  'Créer une technologie' => 'Create a Technology',
+  'Edition de la technologie « %s »' => 'Change the Technology « %s »',
+  'Créer un tag' => 'Create a tag',
+  'Edition du tag « %s »' => 'Change the tag « %s »',
+  'Domaines d\'activité' => 'Fields of activity',
+  'Créer un domaine' => 'Create an activity',
+  'Edition du domaine « %s »' => 'Change the activity « %s »',
+  'Voir les archives' => 'See the archives',
+  'Case Studies' => 'Case Studies',
+  'Nous contacter' => 'Contact us',
+  'Voir tous les projets' => 'See all the projects',
+  'Cubedesigners' => 'Cubedesigners',
+  'Plan d\'accès' => 'Access map',
+  'Tel' => 'Tel',
+  'Fax' => 'Fax',
+  'Choisir un domaine...' => 'Sort projects...',
+  'Tout voir' => 'See all',
+  'Voir le site' => 'Visit the site',
+  'Fermer' => 'Close',
+  'En savoir plus' => 'Learn more',
+  'Bureaux de %s' => '%s office',
+  'Voir le plan' => 'See the map',
+  'TOUT VOIR' => 'See all',
+  'Voir plus d\'actualité' => 'See more news',
+  'Une erreur s\'est produite' => 'An error has occurred',
+  'Certaines modifications n\'ont pas été sauvegardées. Souhaitez-vous néanmoins quitter cette page ?' => 'Some changes are not saved. Are you sure you want to leave this page?',
+  'Chargement en cours' => 'Loading',
+  'Annuler' => 'Cancel',
 );
\ No newline at end of file
diff --git a/images/picto_footer_mail.png b/images/picto_footer_mail.png
new file mode 100644 (file)
index 0000000..a7d9d9f
Binary files /dev/null and b/images/picto_footer_mail.png differ
index 2a5f7a4288d99ccc8deb19e1bd821e4b9ac3587a..21d4a693c5dd85f2d406f54800419c8be5c16425 100644 (file)
@@ -1,14 +1,14 @@
 TO_LOAD_ONCE[TO_LOAD_ONCE.length] = 'load_casestudies();';
 
 function load_casestudies() {
-    $('#casestudies-list-filter').selectric({
-        maxHeight: 450,
-        arrowButtonMarkup: '', // Disable dropdown element since we are using an SVG in the background
-        disableOnMobile: true,
-        onChange: function (element) {
-            $(element).change(); // Trigger change on select box so isotope will update (see isotope-select.js)
-        },
-    });
+  $('#casestudies-list-filter').selectric({
+    maxHeight: 450,
+    arrowButtonMarkup: '', // Disable dropdown element since we are using an SVG in the background
+    disableOnMobile: true,
+    onChange: function(element) {
+      $(element).change(); // Trigger change on select box so isotope will update (see isotope-select.js)
+    },
+  });
 }
 
 
index b8594c2e2203101e3479ad02891e495c9242122a..de8f8729fe7ac9583c806981ba651baea8d13524 100644 (file)
@@ -4,7 +4,7 @@ registerLoader(load_commons_once, true);
 function load_commons_once() {
 
     // Modify WOW.js to allow resetting animated status (see taglist.js)
-    WOW.prototype.addBox = function (element) {
+    WOW.prototype.addBox = function(element){
         this.boxes.push(element);
     };
     window.wow = new WOW();
@@ -77,11 +77,7 @@ function load_commons() {
 }
 
 function resize() {
-    $('.detail-visuel iframe.oam').each(function () {
-        var ratio = parseInt($(this).attr('width')) / parseInt($(this).attr('height'));
-        var height = $(this).outerWidth() / ratio;
-        $(this).css('height', height);
-    });
+
 }
 
 function orientationchange() {
index a9798eaeaa1d2f8a5298a725aa34c25ff47a88df..8d03bc18ec6c4ad0f1a867444c2a71d6656e2382 100644 (file)
                                // (caused by images being inline elements and having space for character descenders).
                                // This is a better solution than setting it to display:block because images can still be aligned this way.
                        }
-
-                       iframe.oam{
-                               max-width: 100%;
-                       }
                }
 
                .detail-video-background {