dbexplorer display informations of the connected database

  1. Requirements
  2. Usage
  3. Internationalization (I18N)
  4. What you can display with the module

DbExplorerModule is a module that provides a quick overview to the connected database inside your application.

It's a kind of tool to support the development process (e.g. while you using Gii) of your web application. So you haven't to change to a other application such like Chive or Adminer if you like only a fast overview to the tables/views etc. in your app.

Requirements

Yii 1.1.13 or above... (no older Yii versions!)

Usage

  • install and explore the code of the demo application
  • or put in the configuration file (main.php) a code snippet like this
'modules'=>array(
        // uncomment the following to enable the Gii tool
        'gii'=>array(
            'class'=>'system.gii.GiiModule',
            'password'=>'admin',
            // If removed, Gii defaults to localhost only. Edit carefully to taste.
            'ipFilters'=>array('127.0.0.1','::1'),
        ),
        'dbExplorer'=>array(
            'class'=>'application.modules.dbExplorer.DbExplorerModule',
            // the path to the application layout file
            'appLayout'=>'application.views.layouts.column1', /* optional */
             // key name for RBAC- support
            'rbac'=>'exploreDB', /* optional */
            // or allow access for one user
            'superUserName'=>'admin',  /* optional: see Yii::app()->user->name */            
        ),

    ),    

Internationalization (I18N)

The widget support german,english and french at the moment. If you have a translation of the message file in an other language than feel you free and send me a mail with your translation!

What you can display with the module

Informations about the database connection

dbe1.jpg

Metadata for Tables / Views

dbe2.jpg

Data Mapping of Yii

dbe3.jpg

2 0
11 followers
359 downloads
Yii Version: Unknown
License: BSD-2-Clause
Category: Others
Developed by: volkmar
Created on: Jun 8, 2013
Last updated: 10 years ago

Downloads

show all

Related Extensions