OXID eShop CE  4.8.12
 All Classes Files Functions Variables Pages
category_update.php
Go to the documentation of this file.
1 <?php
2 
7 {
13  protected $_sThisTemplate = "category_update.tpl";
14 
20  protected $_oCatList = null;
21 
27  protected function _getCategoryList()
28  {
29  if ( $this->_oCatList == null ) {
30  $this->_oCatList = oxNew( "oxCategoryList" );
31  $this->_oCatList->updateCategoryTree( false );
32  }
33  return $this->_oCatList;
34  }
35 
41  public function getCatListUpdateInfo()
42  {
43  return $this->_getCategoryList()->getUpdateInfo();
44  }
45 }