DOCS Swap legacy code block syntax for GFM

This page (currently) for example breaks the code block whenever you mix spaces and tabs for indentation (which is currently part of the 3.x style guideline) - it makes updating existing code examples in the docs quite difficult: https://docs.silverstripe.org/en/3/developer_guides/templates/requirements/

GFM isn't as picky - this PR replaces with it.
This commit is contained in:
Robbie Averill 2017-02-27 16:54:43 +13:00 committed by GitHub
parent 0ddf3b4186
commit d47a4ef63f

View File

@ -11,10 +11,11 @@ coding any references in the `<head>` tag of your template, as it enables a more
**mysite/templates/Page.ss** **mysite/templates/Page.ss**
:::ss ```
<% require css("cms/css/TreeSelector.css") %> <% require css("cms/css/TreeSelector.css") %>
<% require themedCSS("TreeSelector") %> <% require themedCSS("TreeSelector") %>
<% require javascript("cms/javascript/LeftAndMain.js") %> <% require javascript("cms/javascript/LeftAndMain.js") %>
```
<div class="alert" markdown="1"> <div class="alert" markdown="1">
Requiring assets from the template is restricted compared to the PHP API. Requiring assets from the template is restricted compared to the PHP API.
@ -25,44 +26,49 @@ Requiring assets from the template is restricted compared to the PHP API.
It is common practice to include most Requirements either in the *init()*-method of your [controller](../controllers/), or It is common practice to include most Requirements either in the *init()*-method of your [controller](../controllers/), or
as close to rendering as possible (e.g. in [api:FormField]). as close to rendering as possible (e.g. in [api:FormField]).
:::php ```php
<?php <?php
class MyCustomController extends Controller { class MyCustomController extends Controller {
public function init() { public function init() {
parent::init(); parent::init();
Requirements::javascript("cms/javascript/LeftAndMain.js"); Requirements::javascript("cms/javascript/LeftAndMain.js");
Requirements::css("cms/css/TreeSelector.css"); Requirements::css("cms/css/TreeSelector.css");
} }
} }
```
### CSS Files ### CSS Files
:::php ```php
Requirements::css($path, $media); Requirements::css($path, $media);
```
If you're using the CSS method a second argument can be used. This argument defines the 'media' attribute of the If you're using the CSS method a second argument can be used. This argument defines the 'media' attribute of the
`<link>` element, so you can define 'screen' or 'print' for example. `<link>` element, so you can define 'screen' or 'print' for example.
:::php ```php
Requirements::css("cms/css/TreeSelector.css", "screen,projection"); Requirements::css("cms/css/TreeSelector.css", "screen,projection");
```
### Javascript Files ### Javascript Files
:::php ```php
Requirements::javascript($path); Requirements::javascript($path);
```
A variant on the inclusion of custom javascript is the inclusion of *templated* javascript. Here, you keep your A variant on the inclusion of custom javascript is the inclusion of *templated* javascript. Here, you keep your
JavaScript in a separate file and instead load, via search and replace, several PHP-generated variables into that code. JavaScript in a separate file and instead load, via search and replace, several PHP-generated variables into that code.
:::php ```php
$vars = array( $vars = array(
"EditorCSS" => "cms/css/editor.css", "EditorCSS" => "cms/css/editor.css",
); );
Requirements::javascriptTemplate("cms/javascript/editor.template.js", $vars); Requirements::javascriptTemplate("cms/javascript/editor.template.js", $vars);
```
In this example, `editor.template.js` is expected to contain a replaceable variable expressed as `$EditorCSS`. In this example, `editor.template.js` is expected to contain a replaceable variable expressed as `$EditorCSS`.
@ -73,32 +79,34 @@ of 'configuration' from the database in a raw format. You'll need to use the `h
this is generally speaking the best way to do these things - it clearly marks the copy as belonging to a different this is generally speaking the best way to do these things - it clearly marks the copy as belonging to a different
language. language.
:::php ```php
Requirements::customScript(<<<JS Requirements::customScript(<<<JS
alert("hi there"); alert("hi there");
JS JS
); );
Requirements::customCSS(<<<CSS Requirements::customCSS(<<<CSS
.tree li.$className { .tree li.$className {
background-image: url($icon); background-image: url($icon);
} }
CSS CSS
); );
```
## Combining Files ## Combining Files
You can concatenate several CSS or javascript files into a single dynamically generated file. This increases performance You can concatenate several CSS or javascript files into a single dynamically generated file. This increases performance
by reducing HTTP requests. by reducing HTTP requests.
:::php ```php
Requirements::combine_files( Requirements::combine_files(
'foobar.js', 'foobar.js',
array( array(
'mysite/javascript/foo.js', 'mysite/javascript/foo.js',
'mysite/javascript/bar.js', 'mysite/javascript/bar.js',
) )
); );
```
<div class="alert" markdown='1'> <div class="alert" markdown='1'>
To make debugging easier in your local environment, combined files is disabled when running your application in `dev` To make debugging easier in your local environment, combined files is disabled when running your application in `dev`
@ -110,9 +118,10 @@ By default it stores the generated file in the assets/ folder, but you can confi
**mysite/_config/app.yml** **mysite/_config/app.yml**
:::yml ```yaml
Requirements: Requirements:
combined_files_folder: '_combined' combined_files_folder: '_combined'
```
<div class="info" markdown='1'> <div class="info" markdown='1'>
If SilverStripe doesn't have permissions on your server to write these files it will default back to including them If SilverStripe doesn't have permissions on your server to write these files it will default back to including them
@ -122,26 +131,29 @@ individually. SilverStripe **will not** rewrite your paths within the file.
You can also combine CSS files into a media-specific stylesheets as you would with the `Requirements::css` call - use You can also combine CSS files into a media-specific stylesheets as you would with the `Requirements::css` call - use
the third paramter of the `combine_files` function: the third paramter of the `combine_files` function:
:::php ```php
$printStylesheets = array( $printStylesheets = array(
"$themeDir/css/print_HomePage.css", "$themeDir/css/print_HomePage.css",
"$themeDir/css/print_Page.css", "$themeDir/css/print_Page.css",
); );
Requirements::combine_files('print.css', $printStylesheets, 'print'); Requirements::combine_files('print.css', $printStylesheets, 'print');
```
By default, all requirements files are flushed (deleted) when ?flush querystring parameter is set. By default, all requirements files are flushed (deleted) when ?flush querystring parameter is set.
This can be disabled by setting the `Requirements.disable_flush_combined` config to `true`. This can be disabled by setting the `Requirements.disable_flush_combined` config to `true`.
## Clearing assets ## Clearing assets
:::php ```php
Requirements::clear(); Requirements::clear();
```
Clears all defined requirements. You can also clear specific requirements. Clears all defined requirements. You can also clear specific requirements.
:::php ```php
Requirements::clear(THIRDPARTY_DIR.'/prototype.js'); Requirements::clear(THIRDPARTY_DIR.'/prototype.js');
```
<div class="alert" markdown="1"> <div class="alert" markdown="1">
Depending on where you call this command, a Requirement might be *re-included* afterwards. Depending on where you call this command, a Requirement might be *re-included* afterwards.
@ -156,8 +168,9 @@ included requirements, and ones included after the `block()` call.
One common example is to block the core `jquery.js` added by various form fields and core controllers, and use a newer One common example is to block the core `jquery.js` added by various form fields and core controllers, and use a newer
version in a custom location. This assumes you have tested your application with the newer version. version in a custom location. This assumes you have tested your application with the newer version.
:::php ```php
Requirements::block(THIRDPARTY_DIR . '/jquery/jquery.js'); Requirements::block(THIRDPARTY_DIR . '/jquery/jquery.js');
```
<div class="alert" markdown="1"> <div class="alert" markdown="1">
The CMS also uses the `Requirements` system, and its operation can be affected by `block()` calls. Avoid this by The CMS also uses the `Requirements` system, and its operation can be affected by `block()` calls. Avoid this by
@ -179,8 +192,9 @@ careful when messing with the order of requirements.
By default, SilverStripe includes all Javascript files at the bottom of the page body, unless there's another script By default, SilverStripe includes all Javascript files at the bottom of the page body, unless there's another script
already loaded, then, it's inserted before the first `<script>` tag. If this causes problems, it can be configured. already loaded, then, it's inserted before the first `<script>` tag. If this causes problems, it can be configured.
:::php ```php
Requirements::set_force_js_to_bottom(true); Requirements::set_force_js_to_bottom(true);
```
`Requirements.force_js_to_bottom`, will force SilverStripe to write the Javascript to the bottom of the page body, even `Requirements.force_js_to_bottom`, will force SilverStripe to write the Javascript to the bottom of the page body, even
if there is an earlier script tag. if there is an earlier script tag.
@ -188,9 +202,9 @@ if there is an earlier script tag.
If the Javascript files are preferred to be placed in the `<head>` tag rather than in the `<body>` tag, If the Javascript files are preferred to be placed in the `<head>` tag rather than in the `<body>` tag,
`Requirements.write_js_to_body` should be set to false. `Requirements.write_js_to_body` should be set to false.
:::php ```php
Requirements::set_write_js_to_body(false); Requirements::set_write_js_to_body(false);
```
## API Documentation ## API Documentation