mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-19 16:01:57 +08:00
Remove use ($this). Related to 9e1b498fb5.
This commit is contained in:
@@ -175,7 +175,7 @@ class ErrorHandler extends Component
|
|||||||
$html = rtrim($html, '\\');
|
$html = rtrim($html, '\\');
|
||||||
} elseif (strpos($code, '()') !== false) {
|
} elseif (strpos($code, '()') !== false) {
|
||||||
// method/function call
|
// method/function call
|
||||||
$html = preg_replace_callback('/^(.*)\(\)$/', function ($matches) use ($this) {
|
$html = preg_replace_callback('/^(.*)\(\)$/', function ($matches) {
|
||||||
return '<a href="http://yiiframework.com/doc/api/2.0/' . $this->htmlEncode($matches[1]) . '" target="_blank">' .
|
return '<a href="http://yiiframework.com/doc/api/2.0/' . $this->htmlEncode($matches[1]) . '" target="_blank">' .
|
||||||
$this->htmlEncode($matches[1]) . '</a>()';
|
$this->htmlEncode($matches[1]) . '</a>()';
|
||||||
}, $code);
|
}, $code);
|
||||||
|
|||||||
@@ -509,7 +509,7 @@ class Connection extends Component
|
|||||||
public function quoteSql($sql)
|
public function quoteSql($sql)
|
||||||
{
|
{
|
||||||
return preg_replace_callback('/(\\{\\{(%?[\w\-\. ]+%?)\\}\\}|\\[\\[([\w\-\. ]+)\\]\\])/',
|
return preg_replace_callback('/(\\{\\{(%?[\w\-\. ]+%?)\\}\\}|\\[\\[([\w\-\. ]+)\\]\\])/',
|
||||||
function ($matches) use ($this) {
|
function ($matches) {
|
||||||
if (isset($matches[3])) {
|
if (isset($matches[3])) {
|
||||||
return $this->quoteColumnName($matches[3]);
|
return $this->quoteColumnName($matches[3]);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ class Module extends \yii\base\Module
|
|||||||
$this->dataPath = Yii::getAlias($this->dataPath);
|
$this->dataPath = Yii::getAlias($this->dataPath);
|
||||||
$this->logTarget = Yii::$app->getLog()->targets['debug'] = new LogTarget($this);
|
$this->logTarget = Yii::$app->getLog()->targets['debug'] = new LogTarget($this);
|
||||||
// do not initialize view component before application is ready (needed when debug in preload)
|
// do not initialize view component before application is ready (needed when debug in preload)
|
||||||
Yii::$app->on(Application::EVENT_BEFORE_ACTION, function() use ($this) {
|
Yii::$app->on(Application::EVENT_BEFORE_ACTION, function() {
|
||||||
Yii::$app->getView()->on(View::EVENT_END_BODY, array($this, 'renderToolbar'));
|
Yii::$app->getView()->on(View::EVENT_END_BODY, array($this, 'renderToolbar'));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -92,7 +92,7 @@ abstract class BaseListView extends Widget
|
|||||||
public function run()
|
public function run()
|
||||||
{
|
{
|
||||||
if ($this->dataProvider->getCount() > 0 || $this->empty === false) {
|
if ($this->dataProvider->getCount() > 0 || $this->empty === false) {
|
||||||
$content = preg_replace_callback("/{\\w+}/", function ($matches) use ($this) {
|
$content = preg_replace_callback("/{\\w+}/", function ($matches) {
|
||||||
$content = $this->renderSection($matches[0]);
|
$content = $this->renderSection($matches[0]);
|
||||||
return $content === false ? $matches[0] : $content;
|
return $content === false ? $matches[0] : $content;
|
||||||
}, $this->layout);
|
}, $this->layout);
|
||||||
|
|||||||
Reference in New Issue
Block a user