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
9f2b44fc
Commit
9f2b44fc
authored
Apr 16, 2013
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
phpdoc
parent
ac5b25e3
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
51 additions
and
3 deletions
+51
-3
ErrorHandler.php
framework/base/ErrorHandler.php
+14
-0
Response.php
framework/base/Response.php
+18
-0
DbDependency.php
framework/caching/DbDependency.php
+1
-0
MemCache.php
framework/caching/MemCache.php
+1
-1
VarDumper.php
framework/helpers/base/VarDumper.php
+1
-1
CaptchaValidator.php
framework/validators/CaptchaValidator.php
+1
-0
ActiveForm.php
framework/widgets/ActiveForm.php
+15
-1
No files found.
framework/base/ErrorHandler.php
View file @
9f2b44fc
...
...
@@ -51,6 +51,7 @@ class ErrorHandler extends Component
/**
* Handles exception
* @param \Exception $exception
*/
public
function
handle
(
$exception
)
...
...
@@ -64,6 +65,10 @@ class ErrorHandler extends Component
$this
->
renderException
(
$exception
);
}
/**
* Renders exception
* @param \Exception $exception
*/
protected
function
renderException
(
$exception
)
{
if
(
$this
->
errorAction
!==
null
)
{
...
...
@@ -196,6 +201,10 @@ class ErrorHandler extends Component
echo
'<div class="code"><pre>'
.
$output
.
'</pre></div>'
;
}
/**
* Renders calls stack trace
* @param array $trace
*/
public
function
renderTrace
(
$trace
)
{
$count
=
0
;
...
...
@@ -233,6 +242,11 @@ class ErrorHandler extends Component
echo
'</table>'
;
}
/**
* Converts special characters to HTML entities
* @param string $text text to encode
* @return string
*/
public
function
htmlEncode
(
$text
)
{
return
htmlspecialchars
(
$text
,
ENT_QUOTES
,
\Yii
::
$app
->
charset
);
...
...
framework/base/Response.php
View file @
9f2b44fc
...
...
@@ -13,27 +13,45 @@ namespace yii\base;
*/
class
Response
extends
Component
{
/**
* Starts output buffering
*/
public
function
beginOutput
()
{
ob_start
();
ob_implicit_flush
(
false
);
}
/**
* Returns contents of the output buffer and discards it
* @return string output buffer contents
*/
public
function
endOutput
()
{
return
ob_get_clean
();
}
/**
* Returns contents of the output buffer
* @return string output buffer contents
*/
public
function
getOutput
()
{
return
ob_get_contents
();
}
/**
* Discards the output buffer
*/
public
function
cleanOutput
()
{
ob_clean
();
}
/**
* Discards the output buffer
* @param boolean $all if true recursively discards all output buffers used
*/
public
function
removeOutput
(
$all
=
true
)
{
if
(
$all
)
{
...
...
framework/caching/DbDependency.php
View file @
9f2b44fc
...
...
@@ -52,6 +52,7 @@ class DbDependency extends Dependency
/**
* Generates the data needed to determine if dependency has been changed.
* This method returns the value of the global state.
* @throws InvalidConfigException
* @return mixed the data needed to determine if dependency has been changed.
*/
protected
function
generateDependencyData
()
...
...
framework/caching/MemCache.php
View file @
9f2b44fc
...
...
@@ -106,7 +106,7 @@ class MemCache extends Cache
/**
* Returns the underlying memcache (or memcached) object.
* @return \Memcache|\Memcached the memcache (or memcached) object used by this cache component.
* @throws Exception if memcache or memcached extension is not loaded
* @throws
InvalidConfig
Exception if memcache or memcached extension is not loaded
*/
public
function
getMemcache
()
{
...
...
framework/helpers/base/VarDumper.php
View file @
9f2b44fc
...
...
@@ -64,7 +64,7 @@ class VarDumper
return
self
::
$_output
;
}
/*
/*
*
* @param mixed $var variable to be dumped
* @param integer $level depth level
*/
...
...
framework/validators/CaptchaValidator.php
View file @
9f2b44fc
...
...
@@ -68,6 +68,7 @@ class CaptchaValidator extends Validator
/**
* Returns the CAPTCHA action object.
* @throws InvalidConfigException
* @return CaptchaAction the action object
*/
public
function
getCaptchaAction
()
...
...
framework/widgets/ActiveForm.php
View file @
9f2b44fc
...
...
@@ -39,10 +39,16 @@ class ActiveForm extends Widget
public
$errorMessageClass
=
'yii-error-message'
;
/**
* @var string the default CSS class that indicates an input has error.
* This is
*/
public
$errorClass
=
'yii-error'
;
/**
* @var string the default CSS class that indicates an input validated successfully.
*/
public
$successClass
=
'yii-success'
;
/**
* @var string the default CSS class that indicates an input is currently being validated.
*/
public
$validatingClass
=
'yii-validating'
;
/**
* @var boolean whether to enable client-side data validation. Defaults to false.
...
...
@@ -127,6 +133,14 @@ class ActiveForm extends Widget
return
Html
::
label
(
$label
,
$for
,
$options
);
}
/**
* @param string $type
* @param Model $model
* @param string $attribute
* @param array $options
*
* @return string
*/
public
function
input
(
$type
,
$model
,
$attribute
,
$options
=
array
())
{
$value
=
$this
->
getAttributeValue
(
$model
,
$attribute
);
...
...
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