Commit f247f9d5 by Alexander Makarov

Merge pull request #5574 from yiisoft/revert-5566-3855-mongodb-panel-bootstrap

Revert "implementing mongodb panel bootstrap behavior #3855"
parents 33d19a2f 0eb9ceb8
......@@ -27,7 +27,6 @@
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
},
"bootstrap": "yii\\mongodb\\debug\\MongoDbPanel"
}
}
}
......@@ -7,8 +7,6 @@
namespace yii\mongodb\debug;
use yii\base\Application;
use yii\base\BootstrapInterface;
use yii\debug\panels\DbPanel;
use yii\log\Logger;
......@@ -18,22 +16,9 @@ use yii\log\Logger;
* @author Klimov Paul <klimov@zfort.com>
* @since 2.0.1
*/
class MongoDbPanel extends DbPanel implements BootstrapInterface
class MongoDbPanel extends DbPanel
{
/**
* Bootstrap method to be called during application bootstrap stage.
* @param Application $app the application currently running
*/
public function bootstrap($app)
{
$modules = $app->getModules();
if(isset($modules['debug'])){
$modules['debug']['panels']['mongodb'] = ['class'=>self::className()];
}
$app->setModules($modules);
}
/**
* @inheritdoc
*/
public function getName()
......@@ -63,5 +48,4 @@ class MongoDbPanel extends DbPanel implements BootstrapInterface
'yii\mongodb\Database::*',
]);
}
}
\ No newline at end of file
}
\ No newline at end of file
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