You are here

function pwa_extras_tag_list in Progressive Web App 8

Same name and namespace in other branches
  1. 2.x modules/pwa_extras/pwa_extras.module \pwa_extras_tag_list()
1 call to pwa_extras_tag_list()
pwa_extras_page_attachments in modules/pwa_extras/pwa_extras.module
Implements hook_page_attachments().

File

modules/pwa_extras/pwa_extras.module, line 52
Contains pwa_extras.module

Code

function pwa_extras_tag_list($site_name, $mask_color, $status_color) {
  $touch_icons = pwa_extras_apple_touch_icons($mask_color);
  $meta_tags = pwa_extras_apple_meta_tags($site_name, $status_color);
  $homescreen_icons = pwa_extras_apple_home_screen_icons();
  return array_merge($touch_icons, $meta_tags, $homescreen_icons);
}