You are here

function pwa_extras_tag_list in Progressive Web App 2.x

Same name and namespace in other branches
  1. 8 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 50
Contains pwa_extras.module

Code

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