00001 <?php 00002 00006 class Category_Update extends oxAdminView 00007 { 00008 00014 protected $_sThisTemplate = "category_update.tpl"; 00015 00021 protected $_oCatList = null; 00022 00028 protected function _getCategoryList() 00029 { 00030 if ($this->_oCatList == null) { 00031 $this->_oCatList = oxNew("oxCategoryList"); 00032 $this->_oCatList->updateCategoryTree(false); 00033 } 00034 00035 return $this->_oCatList; 00036 } 00037 00043 public function getCatListUpdateInfo() 00044 { 00045 return $this->_getCategoryList()->getUpdateInfo(); 00046 } 00047 }