PATH:
home
/
letacommog
/
letaweb
/
admin
/
modules
/
gallery
<?php class CWidgetGallery extends CWidgetModule { public $margin,$column, $settings,$display_filter,$filter_list,$images; public function decodeData() { $data = $this->module_data; $data = $this->module_data; $settings = getIndex($data, 'settings', array(), 'array'); $this->margin = getIndex($settings, 'margin', 0, 'int'); $this->column = getIndex($settings, 'column', 1, 'int'); $this->display_filter = getIndex($settings, 'display_filter', false, 'boolean'); $this->filter_list = getIndex($data, 'filter_list', array()); $this->images = getIndex($this->module_data, 'images', array()); for ($i = 0; $i < sizeof($this->images);++$i) { if (is_array($this->images[$i])) { $this->images[$i] = (object) $this->images[$i]; } } } }
[+]
..
[-] frontend_script.php
[edit]
[-] backend.php
[edit]
[-] frontend_view.php
[edit]
[-] backend.js
[edit]
[-] frontend_class.php
[edit]