Account::includeAsset($file)
Version 4.1
Get html META tag to include asset file
Version 4.1
Get html META tag to include asset file
HTML meta tag to include asset file.
String HTML
JS file:
$htmlMeta .= $this->get('account')->includeAsset('accountStyle.js'):
// This is same as:
// <SCRIPT src='{$this->get('account')->getAsset('accountStyle.js')}?version={$appVersion}'></SCRIPT>
CSS file:
$htmlMeta .= $this->get('account')->includeAsset('accountStyle.css');
// This is same as:
// <link rel=stylesheet type='text/css' href='{$this->get('account')->getAsset('accountStyle.css')}?version={$appVersion}>