usergroup_main.php

Go to the documentation of this file.
00001 <?php
00002 
00008 class UserGroup_Main extends oxAdminDetails
00009 {
00017     public function render()
00018     {
00019         parent::render();
00020 
00021         $soxId = oxConfig::getParameter( "oxid");
00022         // check if we right now saved a new entry
00023         $sSavedID = oxConfig::getParameter( "saved_oxid");
00024         if ( ($soxId == "-1" || !isset( $soxId)) && isset( $sSavedID) ) {
00025             $soxId = $sSavedID;
00026             oxSession::deleteVar( "saved_oxid");
00027             $this->_aViewData["oxid"] =  $soxId;
00028             // for reloading upper frame
00029             $this->_aViewData["updatelist"] =  "1";
00030         }
00031 
00032         if ( $soxId != "-1" && isset( $soxId)) {
00033             // load object
00034             $oGroup = oxNew( "oxgroups" );
00035             $oGroup->load( $soxId);
00036             $this->_aViewData["edit"] =  $oGroup;
00037         }
00038         if ( oxConfig::getParameter("aoc") ) {
00039 
00040             $aColumns = array();
00041             include_once 'inc/'.strtolower(__CLASS__).'.inc.php';
00042             $this->_aViewData['oxajax'] = $aColumns;
00043 
00044             return "popups/usergroup_main.tpl";
00045         }
00046         return "usergroup_main.tpl";
00047     }
00048 
00054     public function save()
00055     {
00056 
00057         $soxId      = oxConfig::getParameter( "oxid");
00058         $aParams    = oxConfig::getParameter( "editval");
00059         // checkbox handling
00060         if ( !isset( $aParams['oxgroups__oxactive'] ) ) {
00061             $aParams['oxgroups__oxactive'] = 0;
00062         }
00063 
00064         $oGroup = oxNew( "oxgroups" );
00065         if ( $soxId != "-1") {
00066             $oGroup->load( $soxId );
00067         } else {
00068             $aParams['oxgroups__oxid'] = null;
00069         }
00070 
00071         $oGroup->assign( $aParams);
00072         $oGroup->save();
00073 
00074         // set oxid if inserted
00075         if ( $soxId == "-1" ) {
00076             oxSession::setVar( "saved_oxid", $oGroup->oxgroups__oxid->value );
00077         }
00078     }
00079 }

Generated by  doxygen 1.6.2