Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
c84588a4
Commit
c84588a4
authored
Dec 30, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated doc.
parent
1edeb7aa
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
18 deletions
+36
-18
view.md
docs/guide/view.md
+36
-18
No files found.
docs/guide/view.md
View file @
c84588a4
...
@@ -182,10 +182,8 @@ Same as with meta tags you can specify additional argument to make sure there's
...
@@ -182,10 +182,8 @@ Same as with meta tags you can specify additional argument to make sure there's
### Registering CSS
### Registering CSS
You can register CSS using
`registerCss`
or
`registerCssFile`
. Former is for outputting code in
`<style>`
tags directly
You can register CSS using
`registerCss()`
or
`registerCssFile()`
. The former registers a block of CSS code while
to the page which is not recommended in most cases (but still valid). Latter is for registering CSS file. In Yii it's
the latter registers an external CSS file. For example,
much better to
[
use asset manager
](
assets.md
)
to deal with these since it provides extra features so
`registerCssFile`
is manly useful for external CSS files.
```
php
```
php
$this
->
registerCss
(
"body { background: #f00; }"
);
$this
->
registerCss
(
"body { background: #f00; }"
);
...
@@ -199,44 +197,64 @@ body { background: #f00; }
...
@@ -199,44 +197,64 @@ body { background: #f00; }
</style>
</style>
```
```
If you want to specify additional properties of the style tag, pass a
rray of name-values to the second argument. If you
If you want to specify additional properties of the style tag, pass a
n array of name-values to the second argument.
need to make sure there's only a single style tag use third argument as was mentioned in meta tags description.
If you
need to make sure there's only a single style tag use third argument as was mentioned in meta tags description.
```
php
```
php
$this
->
registerCssFile
(
"http://example.com/css/themes/black-and-white.css"
,
[
'media'
=>
'print'
],
'css-print-theme'
);
$this
->
registerCssFile
(
"http://example.com/css/themes/black-and-white.css"
,
[
BootstrapAsset
::
className
()],
[
'media'
=>
'print'
],
'css-print-theme'
);
```
```
The code above will add a link to CSS file to the head section of the page. The CSS will be used only when printing the
The code above will add a link to CSS file to the head section of the page.
page. We're using third argument so one of the views could override it.
*
The first argument specifies the CSS file to be registered.
*
The second argument specifies that this CSS file depends on
`BootstrapAsset`
, meaning it will be added
AFTER the CSS files in
`BootstrapAsset`
. Without this dependency specification, the relative order
between this CSS file and the
`BootstrapAsset`
CSS files would be undefined.
*
The third argument specifies the attributes for the resulting
`<link>`
tag.
*
The last argument specifies an ID identifying this CSS file. If it is not provided, the URL of the CSS file will be
used instead.
It is highly recommended that you use
[
asset bundles
](
assets.md
)
to register external CSS files rather than
using
`registerCssFile()`
. Using asset bundles allows you to combine and compress multiple CSS files, which
is desirable for high traffic websites.
### Registering scripts
### Registering scripts
With
View object you can register scripts. There are two dedicated methods for it:
`registerJs
`
for inline scripts
With
`View`
object you can register scripts. There are two dedicated methods for it:
`registerJs()
`
for inline scripts
and
`registerJsFile`
for external scripts. Inline scripts are useful for configuration and dynamically generated code.
and
`registerJsFile
()
`
for external scripts. Inline scripts are useful for configuration and dynamically generated code.
The method for adding these can be used as follows:
The method for adding these can be used as follows:
```
php
```
php
$this
->
registerJs
(
"var options = "
.
json_encode
(
$options
)
.
";"
,
View
::
POS_END
,
'my-options'
);
$this
->
registerJs
(
"var options = "
.
json_encode
(
$options
)
.
";"
,
View
::
POS_END
,
'my-options'
);
```
```
First argument is the actual code where we're converting a PHP array of options to JavaScript one. S
econd argument
The first argument is the actual JS code we want to insert into the page. The s
econd argument
determines where script should be in the page. Possible values are:
determines where script should be in
serted into
the page. Possible values are:
-
`View::POS_HEAD`
for head section.
-
`View::POS_HEAD`
for head section.
-
`View::POS_BEGIN`
for right after opening
`<body>`
.
-
`View::POS_BEGIN`
for right after opening
`<body>`
.
-
`View::POS_END`
for right before closing
`</body>`
.
-
`View::POS_END`
for right before closing
`</body>`
.
-
`View::POS_READY`
for executing code on document
`ready`
event. This one registers jQuery automatically.
-
`View::POS_READY`
for executing code on document
`ready`
event. This one registers jQuery automatically.
The last argument is unique script ID that is used to identify code block and replace existing one with the same ID
The last argument is
a
unique script ID that is used to identify code block and replace existing one with the same ID
instead of adding a new one.
instead of adding a new one.
If you don't provide it, the JS code itself will be used as the ID.
E
xternal script can be added like the following:
An e
xternal script can be added like the following:
```
php
```
php
$this
->
registerJsFile
(
'http://example.com/js/main.js'
);
$this
->
registerJsFile
(
'http://example.com/js/main.js'
,
[
JqueryAsset
::
className
()]
);
```
```
Same as with external CSS it's preferred to use asset bundles for external scripts.
The arguments for
`registerJsFile()`
are similar to those for
`registerCssFile()`
. In the above example,
we register the
`main.js`
file with the dependency on
`JqueryAsset`
. This means the
`main.js`
file
will be added AFTER
`jquery.js`
. Without this dependency specification, the relative order between
`main.js`
and
`jquery.js`
would be undefined.
Like
`registerCssFile()`
, it is also highly recommended that you use
[
asset bundles
](
assets.md
)
to
register external JS files rather than using
`registerJsFile()`
.
### Registering asset bundles
### Registering asset bundles
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment