Lines Matching refs:manifest
11 $manifest = retrieveConfig('manifest', 'jsonToArray');
15 $manifest['scope'] = DOKU_REL;
17 if (empty($manifest['name'])) {
18 $manifest['name'] = html_entity_decode(
25 if (empty($manifest['short_name'])) {
26 $manifest['short_name'] = html_entity_decode(
33 if (empty($manifest['description'])) {
34 $manifest['description'] = html_entity_decode(
41 if (empty($manifest['start_url'])) {
42 $manifest['start_url'] = DOKU_REL;
49 if (empty($manifest['background_color'])) {
50 $manifest['background_color'] = $replacements['__background__'];
53 if (empty($manifest['theme_color'])) {
54 $manifest['theme_color'] = empty($replacements['__theme_color__'])
59 if (empty($manifest['icons'])) {
60 $manifest['icons'] = [];
63 $manifest['icons'][] = [
80 $manifest['icons'][] = [
90 Event::createAndTrigger('MANIFEST_SEND', $manifest);
93 echo json_encode($manifest, JSON_THROW_ON_ERROR);