OXID eShop CE  4.9.6
 All Classes Files Functions Variables Pages
category_pictures.php
Go to the documentation of this file.
1 <?php
2 
9 {
10 
17  public function render()
18  {
20 
21  $this->_aViewData['edit'] = $oCategory = oxNew('oxcategory');
22 
23  $soxId = $this->getEditObjectId();
24  if ($soxId != '-1' && isset($soxId)) {
25  // load object
26  $oCategory->load($soxId);
27  }
28 
29  return "category_pictures.tpl";
30  }
31 }