Mage_Adminhtml_Block_Api_Tab_Userroles Class Reference

Inheritance diagram for Mage_Adminhtml_Block_Api_Tab_Userroles:

Mage_Adminhtml_Block_Widget_Tabs Mage_Adminhtml_Block_Widget Mage_Adminhtml_Block_Template Mage_Core_Block_Template Mage_Core_Block_Abstract Varien_Object

List of all members.

Public Member Functions

 __construct ()


Detailed Description

Definition at line 26 of file Userroles.php.


Constructor & Destructor Documentation

__construct (  ) 

Constructor

By default is looking for first argument as array and assignes it as object attributes This behaviour may change in child classes

Reimplemented from Varien_Object.

Definition at line 29 of file Userroles.php.

00030     {
00031         parent::__construct();
00032 
00033         $uid = $this->getRequest()->getParam('id', false);
00034         $uid = !empty($uid) ? $uid : 0;
00035         $roles = Mage::getModel("api/roles")
00036             ->getCollection()
00037             ->load();
00038 
00039         $user_roles = Mage::getModel("api/roles")
00040             ->getUsersCollection()
00041             ->setUserFilter($uid)
00042             ->load();
00043 
00044         $this->setTemplate('api/userroles.phtml')
00045             ->assign('roles', $roles)
00046             ->assign('user_roles', $user_roles);
00047     }


The documentation for this class was generated from the following file:

Generated on Sat Jul 4 17:22:42 2009 for Magento by  doxygen 1.5.8