PATH:
home
/
letacommog
/
letaweb
/
admin
/
modules
/
infobox
<?php class CWidgetInfobox extends CWidgetModule { public $title,$description,$image,$image_type,$icon_type,$icon,$text,$size,$align; protected function decodeData() { $this->title = getIndex($this->module_data, 'title'); $this->description = getIndex($this->module_data, 'description'); $this->image = getIndex($this->module_data, 'image'); $this->image_type = getIndex($this->module_data, 'image_type',1); $this->icon_type = getIndex($this->module_data, 'icon_type'); $this->text = getIndex($this->module_data, 'text'); $this->icon = getIndex($this->module_data, 'icon'); $this->size = getIndex($this->module_data, 'size'); $this->align = getIndex($this->module_data, 'align'); } }
[+]
..
[-] frontend_view.php
[edit]
[-] backend.php
[edit]
[-] backend.js
[edit]
[-] frontend_class.php
[edit]