Skip to content

A Yii module allowing the logged in user to be quickly changed to speed up application deveoplement

License

Notifications You must be signed in to change notification settings

Bogsey/yiiQuickSwap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yiiQuickSwap

A Yii module allowing the logged in user to be quickly changed to speed up application deveoplement

Usage

Setup

Unzip the module under protected/modules/yiiQuickSwap and add the following to your main config

return array(
  'modules' => array(
    'yiiQuickSwap',
  ),
  'components' => array(
    'yiiQuickSwap' => array(
      'class' => 'yiiQuickSwap.components.yiiQuickSwap',
      'users' => array('user1', 'user2'), // a list of users that you want to swap between
      'redirect' => 'application.views.site.index', // where to redirect to after the swap
    ),
  ),
)

Use only on developement builds as this module allows anyone to log in as the users specified in the config file without the need for a password.

Using the module

Simply include the following code in the view file where ever you would like the menu to appear.

<?php echo $this->renderPartial('yiiQuickSwap.views.menu'); ?>

or you can point your browser to http://your.site.address/index.php?r=yiiQuickSwap

About

A Yii module allowing the logged in user to be quickly changed to speed up application deveoplement

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages