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
ff7187e5
Commit
ff7187e5
authored
Aug 17, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:yiisoft/yii2
parents
208a2743
0679d8ca
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
view.md
docs/guide/view.md
+2
-2
Generator.php
framework/yii/gii/Generator.php
+2
-0
No files found.
docs/guide/view.md
View file @
ff7187e5
...
@@ -207,12 +207,12 @@ page. We're using third argument so one of the views could override it.
...
@@ -207,12 +207,12 @@ page. We're using third argument so one of the views could override it.
### Registering scripts
### Registering scripts
With View object you can register scripts. There are two dedicated methods for it:
`register
Script
`
for inline scripts
With View object you can register scripts. There are two dedicated methods for it:
`register
Js
`
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
->
register
Script
(
"var options = "
.
json_encode
(
$options
)
.
";"
,
View
::
POS_END
,
'my-options'
);
$this
->
register
Js
(
"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. Second argument
First argument is the actual code where we're converting a PHP array of options to JavaScript one. Second argument
...
...
framework/yii/gii/Generator.php
View file @
ff7187e5
...
@@ -262,6 +262,7 @@ abstract class Generator extends Model
...
@@ -262,6 +262,7 @@ abstract class Generator extends Model
'break'
,
'break'
,
'case'
,
'case'
,
'catch'
,
'catch'
,
'callable'
,
'cfunction'
,
'cfunction'
,
'class'
,
'class'
,
'clone'
,
'clone'
,
...
@@ -297,6 +298,7 @@ abstract class Generator extends Model
...
@@ -297,6 +298,7 @@ abstract class Generator extends Model
'include'
,
'include'
,
'include_once'
,
'include_once'
,
'instanceof'
,
'instanceof'
,
'insteadof'
,
'interface'
,
'interface'
,
'isset'
,
'isset'
,
'list'
,
'list'
,
...
...
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