Skip to content
Snippets Groups Projects
Commit 048b374f authored by Sean Madsen's avatar Sean Madsen
Browse files

Security - Add content about js in Smarty

parent 339249b9
No related branches found
No related tags found
No related merge requests found
......@@ -44,9 +44,21 @@ When placing data within attributes, always use Smarty's [escape](https://www.sm
!!! note
HTML output encoding *is always* necessary for attribute data (but *not* always necessary for data between tags) because of the intentionally incomplete [input encoding](/security/inputs.md#input-encoding) that CiviCRM performs.
## Javascript {:#in-javascript}
### Javascript in Smarty {:#javascript-smarty}
TODO
If you have a PHP variable that you'd like to use in Javascript, you can assign it to a Javascript variable in a Smarty template as follows
```html
<div>...</div>
{literal}
<script type="text/javascript">
var data = {/literal}{$data|@json_encode}{literal};
</script>
{/literal}
<div>...</div>
```
Notice the use of the `@json_encode` variable modifier. This provides output encoding for JSON which is important to prevent XSS.
## AngularJS templates {:#angularjs}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment