Commit c676e92d by Klimov Paul

Merge branch 'master' of github.com:yiisoft/yii2 into asset-command

parents 2c930ae2 71c60b63
...@@ -45,6 +45,9 @@ class YiiBaseTest extends TestCase ...@@ -45,6 +45,9 @@ class YiiBaseTest extends TestCase
Yii::setAlias('@yii', null); Yii::setAlias('@yii', null);
$this->assertFalse(Yii::getAlias('@yii', false)); $this->assertFalse(Yii::getAlias('@yii', false));
$this->assertEquals('/yii/gii/file', Yii::getAlias('@yii/gii/file')); $this->assertEquals('/yii/gii/file', Yii::getAlias('@yii/gii/file'));
Yii::setAlias('@some/alias', '/www');
$this->assertEquals('/www', Yii::getAlias('@some/alias'));
} }
public function testGetVersion() public function testGetVersion()
......
...@@ -287,7 +287,11 @@ class YiiBase ...@@ -287,7 +287,11 @@ class YiiBase
if ($path !== null) { if ($path !== null) {
$path = strncmp($path, '@', 1) ? rtrim($path, '\\/') : static::getAlias($path); $path = strncmp($path, '@', 1) ? rtrim($path, '\\/') : static::getAlias($path);
if (!isset(self::$aliases[$root])) { if (!isset(self::$aliases[$root])) {
self::$aliases[$root] = $path; if ($pos === false) {
self::$aliases[$root] = $path;
} else {
self::$aliases[$root] = array($alias => $path);
}
} elseif (is_string(self::$aliases[$root])) { } elseif (is_string(self::$aliases[$root])) {
if ($pos === false) { if ($pos === false) {
self::$aliases[$root] = $path; self::$aliases[$root] = $path;
......
...@@ -26,8 +26,9 @@ class Toolbar extends Widget ...@@ -26,8 +26,9 @@ class Toolbar extends Widget
$url = Yii::$app->getUrlManager()->createUrl($this->debugAction, array( $url = Yii::$app->getUrlManager()->createUrl($this->debugAction, array(
'tag' => Yii::getLogger()->tag, 'tag' => Yii::getLogger()->tag,
)); ));
$this->view->registerJs("yii.debug.load('$id', '$url');"); $view = $this->getView();
$this->view->registerAssetBundle('yii/debug'); $view->registerJs("yii.debug.load('$id', '$url');");
$view->registerAssetBundle('yii/debug');
echo Html::tag('div', '', array( echo Html::tag('div', '', array(
'id' => $id, 'id' => $id,
'style' => 'display: none', 'style' => 'display: none',
......
...@@ -122,7 +122,7 @@ class LinkPager extends Widget ...@@ -122,7 +122,7 @@ class LinkPager extends Widget
{ {
$buttons = array(); $buttons = array();
$pageCount = $this->pagination->pageCount; $pageCount = $this->pagination->getPageCount();
$currentPage = $this->pagination->getPage(); $currentPage = $this->pagination->getPage();
// first page // first page
......
...@@ -63,7 +63,7 @@ class ListPager extends Widget ...@@ -63,7 +63,7 @@ class ListPager extends Widget
*/ */
public function run() public function run()
{ {
$pageCount = $this->pagination->pageCount; $pageCount = $this->pagination->getPageCount();
$currentPage = $this->pagination->getPage(); $currentPage = $this->pagination->getPage();
$pages = array(); $pages = array();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment