oxsimplevariantlist.php

Go to the documentation of this file.
00001 <?php
00002 
00007 class oxSimpleVariantList extends oxList
00008 {
00009 
00013     protected $_oParent = null;
00014 
00020     protected $_sObjectsInListName = 'oxsimplevariant';
00021 
00027     public function setParent($oParent)
00028     {
00029         $this->_oParent = $oParent;
00030     }
00031 
00038     protected function _assignElement($oListObject, $aDbFields)
00039     {
00040         $oListObject->setParent($this->_oParent);
00041         parent::_assignElement($oListObject, $aDbFields);
00042     }
00043 }