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