Example #1
0
 public function parseItem($item)
 {
     if (in_array($item['id'], $_SESSION['active_pages'])) {
         $item['selected'] = 'selected="selected"';
     }
     return parent::parseItem($item);
 }
Example #2
0
 /**
  * parseItem
  */
 public function parseItem($item)
 {
     $image_width = $this->GET['image_width'];
     $image_height = $this->GET['image_height'];
     $image_fill = $this->GET['image_fill'];
     $_Onxshop_Request = new Onxshop_Request("component/teaser_stack~target_node_id={$item['id']}:image_width={$image_width}:image_height={$image_height}:image_fill={$image_fill}~");
     $item['teaser_content'] = $_Onxshop_Request->getContent();
     return parent::parseItem($item);
 }