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