registerLinkTag() public method
Registers a link tag. For example, a link tag for a custom favicon can be added like the following: $view->registerLinkTag(['rel' => 'icon', 'type' => 'image/png', 'href' => '/myicon.png']);
which will result in the following HTML: <link rel="icon" type="image/png" href="/myicon.png">. Note: To register link tags for CSS stylesheets, use registerCssFile() instead, which has more options for this kind of link tag.
public void registerLinkT