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