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
9bb0ce4b
Commit
9bb0ce4b
authored
Jun 19, 2013
by
Alexander Kochetov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Html helper pure HTML 5 mode without support old standarts
parent
11c14a20
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
47 deletions
+16
-47
Html.php
framework/yii/helpers/base/Html.php
+15
-46
FormatterTest.php
tests/unit/framework/base/FormatterTest.php
+1
-1
HtmlTest.php
tests/unit/framework/helpers/HtmlTest.php
+0
-0
No files found.
framework/yii/helpers/base/Html.php
View file @
9bb0ce4b
...
...
@@ -21,11 +21,6 @@ use yii\base\Model;
class
Html
{
/**
* @var boolean whether to close void (empty) elements. Defaults to true.
* @see voidElements
*/
public
static
$closeVoidElements
=
true
;
/**
* @var array list of void elements (element name => 1)
* @see closeVoidElements
* @see http://www.w3.org/TR/html-markup/syntax.html#void-element
...
...
@@ -49,12 +44,6 @@ class Html
'wbr'
=>
1
,
);
/**
* @var boolean whether to show the values of boolean attributes in element tags.
* If false, only the attribute names will be generated.
* @see booleanAttributes
*/
public
static
$showBooleanAttributeValues
=
true
;
/**
* @var array list of boolean attributes. The presence of a boolean attribute on
* an element represents the true value, and the absence of the attribute represents the false value.
* @see showBooleanAttributeValues
...
...
@@ -165,11 +154,10 @@ class Html
*/
public
static
function
tag
(
$name
,
$content
=
''
,
$options
=
array
())
{
$html
=
'<'
.
$name
.
static
::
renderTagAttributes
(
$options
);
if
(
isset
(
static
::
$voidElements
[
strtolower
(
$name
)]))
{
return
$html
.
(
static
::
$closeVoidElements
?
' />'
:
'>'
);
return
static
::
beginTag
(
$name
,
$options
);
}
else
{
return
$html
.
">
$content
</
$name
>"
;
return
static
::
beginTag
(
$name
,
$options
)
.
$content
.
static
::
endTag
(
$name
)
;
}
}
...
...
@@ -185,7 +173,7 @@ class Html
*/
public
static
function
beginTag
(
$name
,
$options
=
array
())
{
return
'<'
.
$name
.
static
::
renderTagAttributes
(
$options
)
.
'>'
;
return
"<
$name
"
.
static
::
renderTagAttributes
(
$options
)
.
'>'
;
}
/**
...
...
@@ -201,16 +189,6 @@ class Html
}
/**
* Encloses the given content within a CDATA tag.
* @param string $content the content to be enclosed within the CDATA tag
* @return string the CDATA tag with the enclosed content.
*/
public
static
function
cdata
(
$content
)
{
return
'<![CDATA['
.
$content
.
']]>'
;
}
/**
* Generates a style tag.
* @param string $content the style content
* @param array $options the tag options in terms of name-value pairs. These will be rendered as
...
...
@@ -221,10 +199,7 @@ class Html
*/
public
static
function
style
(
$content
,
$options
=
array
())
{
if
(
!
isset
(
$options
[
'type'
]))
{
$options
[
'type'
]
=
'text/css'
;
}
return
static
::
tag
(
'style'
,
"/*<![CDATA[*/
\n
{
$content
}
\n
/*]]>*/"
,
$options
);
return
static
::
tag
(
'style'
,
$content
,
$options
);
}
/**
...
...
@@ -238,10 +213,7 @@ class Html
*/
public
static
function
script
(
$content
,
$options
=
array
())
{
if
(
!
isset
(
$options
[
'type'
]))
{
$options
[
'type'
]
=
'text/javascript'
;
}
return
static
::
tag
(
'script'
,
"/*<![CDATA[*/
\n
{
$content
}
\n
/*]]>*/"
,
$options
);
return
static
::
tag
(
'script'
,
$content
,
$options
);
}
/**
...
...
@@ -256,7 +228,6 @@ class Html
public
static
function
cssFile
(
$url
,
$options
=
array
())
{
$options
[
'rel'
]
=
'stylesheet'
;
$options
[
'type'
]
=
'text/css'
;
$options
[
'href'
]
=
static
::
url
(
$url
);
return
static
::
tag
(
'link'
,
''
,
$options
);
}
...
...
@@ -272,7 +243,6 @@ class Html
*/
public
static
function
jsFile
(
$url
,
$options
=
array
())
{
$options
[
'type'
]
=
'text/javascript'
;
$options
[
'src'
]
=
static
::
url
(
$url
);
return
static
::
tag
(
'script'
,
''
,
$options
);
}
...
...
@@ -313,7 +283,10 @@ class Html
// we use hidden fields to add them back
foreach
(
explode
(
'&'
,
substr
(
$action
,
$pos
+
1
))
as
$pair
)
{
if
((
$pos1
=
strpos
(
$pair
,
'='
))
!==
false
)
{
$hiddenInputs
[]
=
static
::
hiddenInput
(
urldecode
(
substr
(
$pair
,
0
,
$pos1
)),
urldecode
(
substr
(
$pair
,
$pos1
+
1
)));
$hiddenInputs
[]
=
static
::
hiddenInput
(
urldecode
(
substr
(
$pair
,
0
,
$pos1
)),
urldecode
(
substr
(
$pair
,
$pos1
+
1
))
);
}
else
{
$hiddenInputs
[]
=
static
::
hiddenInput
(
urldecode
(
$pair
),
''
);
}
...
...
@@ -395,7 +368,7 @@ class Html
if
(
!
isset
(
$options
[
'alt'
]))
{
$options
[
'alt'
]
=
''
;
}
return
static
::
tag
(
'img'
,
null
,
$options
);
return
static
::
tag
(
'img'
,
''
,
$options
);
}
/**
...
...
@@ -424,14 +397,10 @@ class Html
* @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()]].
* If a value is null, the corresponding attribute will not be rendered.
* If the options does not contain "type", a "type" attribute with value "button" will be rendered.
* @return string the generated button tag
*/
public
static
function
button
(
$content
=
'Button'
,
$options
=
array
())
{
if
(
!
isset
(
$options
[
'type'
]))
{
$options
[
'type'
]
=
'button'
;
}
return
static
::
tag
(
'button'
,
$content
,
$options
);
}
...
...
@@ -482,7 +451,7 @@ class Html
$options
[
'type'
]
=
$type
;
$options
[
'name'
]
=
$name
;
$options
[
'value'
]
=
$value
;
return
static
::
tag
(
'input'
,
null
,
$options
);
return
static
::
tag
(
'input'
,
''
,
$options
);
}
/**
...
...
@@ -497,7 +466,7 @@ class Html
{
$options
[
'type'
]
=
'button'
;
$options
[
'value'
]
=
$label
;
return
static
::
tag
(
'input'
,
null
,
$options
);
return
static
::
tag
(
'input'
,
''
,
$options
);
}
/**
...
...
@@ -512,7 +481,7 @@ class Html
{
$options
[
'type'
]
=
'submit'
;
$options
[
'value'
]
=
$label
;
return
static
::
tag
(
'input'
,
null
,
$options
);
return
static
::
tag
(
'input'
,
''
,
$options
);
}
/**
...
...
@@ -526,7 +495,7 @@ class Html
{
$options
[
'type'
]
=
'reset'
;
$options
[
'value'
]
=
$label
;
return
static
::
tag
(
'input'
,
null
,
$options
);
return
static
::
tag
(
'input'
,
''
,
$options
);
}
/**
...
...
@@ -1315,7 +1284,7 @@ class Html
foreach
(
$attributes
as
$name
=>
$value
)
{
if
(
isset
(
static
::
$booleanAttributes
[
strtolower
(
$name
)]))
{
if
(
$value
||
strcasecmp
(
$name
,
$value
)
===
0
)
{
$html
.=
static
::
$showBooleanAttributeValues
?
"
$name
=
\"
$name
\"
"
:
"
$name
"
;
$html
.=
"
$name
"
;
}
}
elseif
(
$value
!==
null
)
{
$html
.=
"
$name
=
\"
"
.
static
::
encode
(
$value
)
.
'"'
;
...
...
tests/unit/framework/base/FormatterTest.php
View file @
9bb0ce4b
...
...
@@ -96,7 +96,7 @@ class FormatterTest extends TestCase
public
function
testAsImage
()
{
$value
=
'http://sample.com/img.jpg'
;
$this
->
assertSame
(
"<img src=
\"
$value
\"
alt=
\"\"
/
>"
,
$this
->
formatter
->
asImage
(
$value
));
$this
->
assertSame
(
"<img src=
\"
$value
\"
alt=
\"\"
>"
,
$this
->
formatter
->
asImage
(
$value
));
}
public
function
testAsBoolean
()
...
...
tests/unit/framework/helpers/HtmlTest.php
View file @
9bb0ce4b
This diff is collapsed.
Click to expand it.
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