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
ed5007e4
Commit
ed5007e4
authored
Mar 12, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more reference fixes
parent
d5df1203
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
BaseHtml.php
framework/helpers/BaseHtml.php
+5
-5
No files found.
framework/helpers/BaseHtml.php
View file @
ed5007e4
...
@@ -193,13 +193,13 @@ class BaseHtml
...
@@ -193,13 +193,13 @@ class BaseHtml
/**
/**
* Generates a link tag that refers to an external CSS file.
* Generates a link tag that refers to an external CSS file.
* @param array|string $url the URL of the external CSS file. This parameter will be processed by [[
url
()]].
* @param array|string $url the URL of the external CSS file. This parameter will be processed by [[
\yii\helpers\Url::to
()]].
* @param array $options the tag options in terms of name-value pairs. These will be rendered as
* @param array $options the tag options in terms of name-value pairs. These will be rendered as
* the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
* the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
* If a value is null, the corresponding attribute will not be rendered.
* If a value is null, the corresponding attribute will not be rendered.
* See [[renderTagAttributes()]] for details on how attributes are being rendered.
* See [[renderTagAttributes()]] for details on how attributes are being rendered.
* @return string the generated link tag
* @return string the generated link tag
* @see
url
()
* @see
\yii\helpers\Url::to
()
*/
*/
public
static
function
cssFile
(
$url
,
$options
=
[])
public
static
function
cssFile
(
$url
,
$options
=
[])
{
{
...
@@ -212,13 +212,13 @@ class BaseHtml
...
@@ -212,13 +212,13 @@ class BaseHtml
/**
/**
* Generates a script tag that refers to an external JavaScript file.
* Generates a script tag that refers to an external JavaScript file.
* @param string $url the URL of the external JavaScript file. This parameter will be processed by [[
url
()]].
* @param string $url the URL of the external JavaScript file. This parameter will be processed by [[
\yii\helpers\Url::to
()]].
* @param array $options the tag options in terms of name-value pairs. These will be rendered as
* @param array $options the tag options in terms of name-value pairs. These will be rendered as
* the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
* the attributes of the resulting tag. The values will be HTML-encoded using [[encode()]].
* If a value is null, the corresponding attribute will not be rendered.
* If a value is null, the corresponding attribute will not be rendered.
* See [[renderTagAttributes()]] for details on how attributes are being rendered.
* See [[renderTagAttributes()]] for details on how attributes are being rendered.
* @return string the generated script tag
* @return string the generated script tag
* @see
url
()
* @see
\yii\helpers\Url::to
()
*/
*/
public
static
function
jsFile
(
$url
,
$options
=
[])
public
static
function
jsFile
(
$url
,
$options
=
[])
{
{
...
@@ -228,7 +228,7 @@ class BaseHtml
...
@@ -228,7 +228,7 @@ class BaseHtml
/**
/**
* Generates a form start tag.
* Generates a form start tag.
* @param array|string $action the form action URL. This parameter will be processed by [[
url
()]].
* @param array|string $action the form action URL. This parameter will be processed by [[
\yii\helpers\Url::to
()]].
* @param string $method the form submission method, such as "post", "get", "put", "delete" (case-insensitive).
* @param string $method the form submission method, such as "post", "get", "put", "delete" (case-insensitive).
* Since most browsers only support "post" and "get", if other methods are given, they will
* Since most browsers only support "post" and "get", if other methods are given, they will
* be simulated using "post", and a hidden input will be added which contains the actual method type.
* be simulated using "post", and a hidden input will be added which contains the actual method type.
...
...
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