dolibarr  16.0.5
manifest.json.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2004-2017 Laurent Destailleur <eldy@users.sourceforge.net>
3  * Copyright (C) 2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
4  * Copyright (C) 2007-2017 Regis Houssin <regis.houssin@inodbox.com>
5  * Copyright (C) 2011 Philippe Grand <philippe.grand@atoo-net.com>
6  * Copyright (C) 2012 Juanjo Menent <jmenent@2byte.es>
7  * Copyright (C) 2018 Ferran Marcet <fmarcet@2byte.es>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FI8TNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <http://www.gnu.org/licenses/>.
21  */
22 
28 if (!defined('NOREQUIREUSER')) {
29  define('NOREQUIREUSER', '1');
30 }
31 if (!defined('NOREQUIRESOC')) {
32  define('NOREQUIRESOC', '1');
33 }
34 if (!defined('NOREQUIRETRAN')) {
35  define('NOREQUIRETRAN', '1');
36 }
37 if (!defined('NOCSRFCHECK')) {
38  define('NOCSRFCHECK', '1');
39 }
40 if (!defined('NOTOKENRENEWAL')) {
41  define('NOTOKENRENEWAL', '1');
42 }
43 if (!defined('NOLOGIN')) {
44  define('NOLOGIN', '1');
45 }
46 if (!defined('NOREQUIREMENU')) {
47  define('NOREQUIREMENU', '1');
48 }
49 if (!defined('NOREQUIREHTML')) {
50  define('NOREQUIREHTML', '1');
51 }
52 if (!defined('NOREQUIREAJAX')) {
53  define('NOREQUIREAJAX', '1');
54 }
55 if (!defined('NOSESSION')) {
56  define('NOSESSION', '1');
57 }
58 
59 require_once __DIR__.'/../../main.inc.php';
60 
61 
62 top_httphead('text/json');
63 // Important: Following code is to avoid page request by browser and PHP CPU at each Dolibarr page access.
64 if (empty($dolibarr_nocache)) {
65  header('Cache-Control: max-age=10800, public, must-revalidate');
66  // For a text/json, we must set an Expires to avoid to have it forced to an expired value by the web server
67  header('Expires: '.gmdate('D, d M Y H:i:s', dol_now('gmt') + 10800).' GMT');
68 } else {
69  header('Cache-Control: no-cache');
70 }
71 
72 
73 $manifest = new stdClass();
74 
75 
76 $manifest->name = constant('DOL_APPLICATION_TITLE');
77 if (!empty($conf->global->MAIN_APPLICATION_TITLE)) {
78  $manifest->name = $conf->global->MAIN_APPLICATION_TITLE;
79 }
80 
81 
82 $manifest->theme_color = !empty($conf->global->MAIN_MANIFEST_APPLI_THEME_COLOR) ? $conf->global->MAIN_MANIFEST_APPLI_THEME_COLOR : '#F05F40';
83 $manifest->background_color = !empty($conf->global->MAIN_MANIFEST_APPLI_BG_COLOR) ? $conf->global->MAIN_MANIFEST_APPLI_BG_COLOR : "#ffffff";
84 $manifest->display = "standalone";
85 $manifest->splash_pages = null;
86 $manifest->icons = array();
87 
88 if (!empty($conf->global->MAIN_MANIFEST_APPLI_LOGO_URL)) {
89  $icon = new stdClass();
90  $icon->src = $conf->global->MAIN_MANIFEST_APPLI_LOGO_URL;
91  if ($conf->global->MAIN_MANIFEST_APPLI_LOGO_URL_SIZE) {
92  $icon->sizes = $conf->global->MAIN_MANIFEST_APPLI_LOGO_URL_SIZE."x".$conf->global->MAIN_MANIFEST_APPLI_LOGO_URL_SIZE;
93  } else {
94  $icon->sizes = "512x512";
95  }
96  $icon->type = "image/png";
97  $manifest->icons[] = $icon;
98 } elseif (!empty($conf->global->MAIN_INFO_SOCIETE_LOGO_SQUARRED)) {
99  if (!empty($conf->global->MAIN_INFO_SOCIETE_LOGO_SQUARRED_MINI)) {
100  $iconRelativePath = 'logos/thumbs/'.$conf->global->MAIN_INFO_SOCIETE_LOGO_SQUARRED_MINI;
101  $iconPath = $conf->mycompany->dir_output.'/'.$iconRelativePath;
102  if (is_readable($iconPath)) {
103  $imgSize = getimagesize($iconPath);
104  if (!empty($imgSize)) {
105  $icon = new stdClass();
106  $icon->src = DOL_URL_ROOT.'/viewimage.php?cache=1&modulepart=mycompany&file='.urlencode($iconRelativePath);
107  $icon->sizes = $imgSize[0]."x".$imgSize[1];
108  $icon->type = "image/png";
109  $manifest->icons[] = $icon;
110  }
111  }
112  }
113 
114  if (!empty($conf->global->MAIN_INFO_SOCIETE_LOGO_SQUARRED_SMALL)) {
115  $iconRelativePath = 'logos/thumbs/'.$conf->global->MAIN_INFO_SOCIETE_LOGO_SQUARRED_SMALL;
116  $iconPath = $conf->mycompany->dir_output.'/'.$iconRelativePath;
117  if (is_readable($iconPath)) {
118  $imgSize = getimagesize($iconPath);
119  if ($imgSize) {
120  $icon = new stdClass();
121  $icon->src = DOL_URL_ROOT.'/viewimage.php?cache=1&modulepart=mycompany&file='.urlencode($iconRelativePath);
122  $icon->sizes = $imgSize[0]."x".$imgSize[1];
123  $icon->type = "image/png";
124  $manifest->icons[] = $icon;
125  }
126  }
127  }
128 
129  if (!empty($conf->global->MAIN_INFO_SOCIETE_LOGO_SQUARRED)) {
130  $iconRelativePath = 'logos/'.$conf->global->MAIN_INFO_SOCIETE_LOGO_SQUARRED;
131  $iconPath = $conf->mycompany->dir_output.'/'.$iconRelativePath;
132  if (is_readable($iconPath)) {
133  $imgSize = getimagesize($iconPath);
134  if ($imgSize) {
135  $icon = new stdClass();
136  $icon->src = DOL_URL_ROOT.'/viewimage.php?cache=1&modulepart=mycompany&file='.urlencode($iconRelativePath);
137  $icon->sizes = $imgSize[0]."x".$imgSize[1];
138  $icon->type = "image/png";
139  $manifest->icons[] = $icon;
140  }
141  }
142  }
143 }
144 
145 // Add Dolibarr std icon
146 if (empty($manifest->icons)) {
147  $icon = new stdClass();
148  $icon->src = DOL_URL_ROOT.'/theme/dolibarr_256x256_color.png';
149  $icon->sizes = "256x256";
150  $icon->type = "image/png";
151  $manifest->icons[] = $icon;
152 }
153 
154 
155 print json_encode($manifest);
top_httphead
if(!defined('NOREQUIREMENU')) if(!function_exists("llxHeader")) top_httphead($contenttype='text/html', $forcenocache=0)
Show HTTP header.
Definition: main.inc.php:1407
dol_now
dol_now($mode='auto')
Return date for now.
Definition: functions.lib.php:2845