00001 <?php 00002 00007 class oxSimpleVariantList extends oxList 00008 { 00012 protected $_oParent = null; 00013 00019 protected $_sObjectsInListName = 'oxsimplevariant'; 00020 00028 public function setParent($oParent) 00029 { 00030 $this->_oParent = $oParent; 00031 } 00032 00041 protected function _assignElement($oListObject, $aDbFields) 00042 { 00043 $oListObject->setParent($this->_oParent); 00044 parent::_assignElement($oListObject, $aDbFields); 00045 } 00046 }