From 9dba82e8c196b8ba2de81c53305efc4fabe1c465 Mon Sep 17 00:00:00 2001 From: Alice Frumin <alifrumin@users.noreply.github.com> Date: Wed, 10 Apr 2019 13:59:41 -0400 Subject: [PATCH] buildAsset requires that the $asset varaible look like a file (containg a . ) --- docs/framework/asset-builder.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/framework/asset-builder.md b/docs/framework/asset-builder.md index 2068ed1f..ee2d1132 100644 --- a/docs/framework/asset-builder.md +++ b/docs/framework/asset-builder.md @@ -176,7 +176,7 @@ In `myextension.php`: */ function myextension_civicrm_buildAsset($asset, $params, &$mimetype, &$content) { // Check for the asset of interest - if ($asset !== 'mycss') return; + if ($asset !== 'mycss.css') return; // Find the path to our template css file $path = \Civi::resources()->getPath('org.example.myextension', 'css/my_css_template.css'); @@ -200,12 +200,12 @@ function myextension_civicrm_buildAsset($asset, $params, &$mimetype, &$content) Check it is functioning correctly: ``` -$ cv ev '$x = \Civi::service("asset_builder")->render("mycss"); echo $x["content"];' +$ cv ev '$x = \Civi::service("asset_builder")->render("mycss.css"); echo $x["content"];' ``` Get the generated URL: ``` -$ cv ev 'return \Civi::service("asset_builder")->getUrl("mycss");' +$ cv ev 'return \Civi::service("asset_builder")->getUrl("mycss.css");' ``` Now we can use our newly defined asset in place of a static css file in `myextension.php`: @@ -220,8 +220,8 @@ function myextension_civicrm_coreResourceList(&$list, $region) { // CRM_Core_Resources::singleton()->addStyleFile('org.example.myextension', 'css/my_css.css'); // replace that with the following: - // use the asset_builder service to get the url of an asset labeled 'mycss' - $url = \Civi::service('asset_builder')->getUrl('mycss'); + // use the asset_builder service to get the url of an asset labeled 'mycss.css' + $url = \Civi::service('asset_builder')->getUrl('mycss.css'); // load the processed style on the page CRM_Core_Resources::singleton()->addStyleUrl($url); -- GitLab