deliveryset_users_ajax.php

Go to the documentation of this file.
00001 <?php
00002 
00006 class deliveryset_users_ajax extends ajaxListComponent
00007 {
00013     protected $_aColumns = array( 'container1' => array(    // field , table,  visible, multilanguage, ident
00014                                         array( 'oxusername',  'oxuser', 1, 0, 0 ),
00015                                         array( 'oxlname',     'oxuser', 0, 0, 0 ),
00016                                         array( 'oxfname',     'oxuser', 0, 0, 0 ),
00017                                         array( 'oxstreet',    'oxuser', 0, 0, 0 ),
00018                                         array( 'oxstreetnr',  'oxuser', 0, 0, 0 ),
00019                                         array( 'oxcity',      'oxuser', 0, 0, 0 ),
00020                                         array( 'oxzip',       'oxuser', 0, 0, 0 ),
00021                                         array( 'oxfon',       'oxuser', 0, 0, 0 ),
00022                                         array( 'oxbirthdate', 'oxuser', 0, 0, 0 ),
00023                                         array( 'oxid',        'oxuser', 0, 0, 1 ),
00024                                         ),
00025                                     'container2' => array(
00026                                         array( 'oxusername',  'oxuser', 1, 0, 0 ),
00027                                         array( 'oxlname',     'oxuser', 0, 0, 0 ),
00028                                         array( 'oxfname',     'oxuser', 0, 0, 0 ),
00029                                         array( 'oxstreet',    'oxuser', 0, 0, 0 ),
00030                                         array( 'oxstreetnr',  'oxuser', 0, 0, 0 ),
00031                                         array( 'oxcity',      'oxuser', 0, 0, 0 ),
00032                                         array( 'oxzip',       'oxuser', 0, 0, 0 ),
00033                                         array( 'oxfon',       'oxuser', 0, 0, 0 ),
00034                                         array( 'oxbirthdate', 'oxuser', 0, 0, 0 ),
00035                                         array( 'oxid',     'oxobject2delivery', 0, 0, 1 ),
00036                                         )
00037                                 );
00038 
00044     protected function _getQuery()
00045     {
00046         $myConfig = $this->getConfig();
00047         $oDb = oxDb::getDb();
00048         $sId      = oxConfig::getParameter( 'oxid' );
00049         $sSynchId = oxConfig::getParameter( 'synchoxid' );
00050 
00051         $sUserTable = $this->_getViewName('oxuser');
00052 
00053         // category selected or not ?
00054         if ( !$sId) {
00055             $sQAdd  = " from $sUserTable where 1 ";
00056             if (!$myConfig->getConfigParam( 'blMallUsers' ) )
00057                 $sQAdd .= "and $sUserTable.oxshopid = '".$myConfig->getShopId()."' ";
00058         } else {
00059             // selected group ?
00060             if ( $sSynchId && $sSynchId != $sId ) {
00061                 $sQAdd  = " from oxobject2group left join $sUserTable on $sUserTable.oxid = oxobject2group.oxobjectid ";
00062                 $sQAdd .= " where oxobject2group.oxgroupsid = ".$oDb->quote( $sId );
00063                 if (!$myConfig->getConfigParam( 'blMallUsers' ) )
00064                     $sQAdd .= "and $sUserTable.oxshopid = '".$myConfig->getShopId()."' ";
00065 
00066                 // resetting
00067                 $sId = null;
00068             } else {
00069                 $sQAdd  = " from oxobject2delivery, $sUserTable where oxobject2delivery.oxdeliveryid = ".$oDb->quote( $sId );
00070                 $sQAdd .= "and oxobject2delivery.oxobjectid = $sUserTable.oxid and oxobject2delivery.oxtype = 'oxdelsetu' ";
00071             }
00072         }
00073 
00074         if ( $sSynchId && $sSynchId != $sId) {
00075             $sQAdd .= "and $sUserTable.oxid not in ( select $sUserTable.oxid from oxobject2delivery, $sUserTable where oxobject2delivery.oxdeliveryid = ".$oDb->quote( $sSynchId );
00076             $sQAdd .= "and oxobject2delivery.oxobjectid = $sUserTable.oxid and oxobject2delivery.oxtype = 'oxdelsetu' ) ";
00077         }
00078 
00079         return $sQAdd;
00080     }
00081 
00087     public function removeUserFromSet()
00088     {
00089         $aRemoveGroups = $this->_getActionIds( 'oxobject2delivery.oxid' );
00090         if ( oxConfig::getParameter( 'all' ) ) {
00091 
00092             $sQ = $this->_addFilter( "delete oxobject2delivery.* ".$this->_getQuery() );
00093             oxDb::getDb()->Execute( $sQ );
00094 
00095         } elseif ( $aRemoveGroups && is_array( $aRemoveGroups ) ) {
00096             $sQ = "delete from oxobject2delivery where oxobject2delivery.oxid in (" . implode( ", ", oxDb::getInstance()->quoteArray( $aRemoveGroups ) ) . ") ";
00097             oxDb::getDb()->Execute( $sQ );
00098         }
00099     }
00100 
00106     public function addUserToSet()
00107     {
00108         $aChosenUsr = $this->_getActionIds( 'oxuser.oxid' );
00109         $soxId      = oxConfig::getParameter( 'synchoxid' );
00110 
00111         // adding
00112         if ( oxConfig::getParameter( 'all' ) ) {
00113             $sUserTable = $this->_getViewName('oxuser');
00114             $aChosenUsr = $this->_getAll( $this->_addFilter( "select $sUserTable.oxid ".$this->_getQuery() ) );
00115         }
00116         if ( $soxId && $soxId != "-1" && is_array( $aChosenUsr ) ) {
00117             foreach ( $aChosenUsr as $sChosenUsr) {
00118                 $oObject2Delivery = oxNew( 'oxbase' );
00119                 $oObject2Delivery->init( 'oxobject2delivery' );
00120                 $oObject2Delivery->oxobject2delivery__oxdeliveryid = new oxField($soxId);
00121                 $oObject2Delivery->oxobject2delivery__oxobjectid   = new oxField($sChosenUsr);
00122                 $oObject2Delivery->oxobject2delivery__oxtype       = new oxField("oxdelsetu");
00123                 $oObject2Delivery->save();
00124             }
00125         }
00126     }
00127 
00128 }