PATH:
home
/
letacommog
/
letaweb
/
admin
/
modules
/
infobox
<?php $image_type ="image"; if($this->image_type == 1) { $image_type ="icon"; } if($this->image_type == 3) { $image_type ="text"; } ?> <div class="info_box info_box_<?php echo $this->align; ?>"> <div class="sts-icon-wrapper"> <div class="sts-icon <?php echo "sts-icon-".$image_type; ?>" style="font-size:<?php echo $this->size ?>px"> <div class="sts-icon-inner"> <?php if($this->image_type=='image') { ?> <img src="<?php $this->image; ?>"> <?php } ?> <?php if($this->image_type=='icon') { ?> <span class="icon <?php echo $this->icon_type; ?> <?php echo $this->icon; ?>"></span> <?php } ?> <?php if($this->image_type=='text') { ?> <span class="text"><?php echo $this->text_icon; ?></span> <?php } ?> </div> </div> </div> <div class="info_content"> <div class="info_title"> <h3><?php echo $this->title; ?></h3> </div> <div class="info_description"> <p><?php echo $this->description; ?></p> </div> </div> </div>
[+]
..
[-] frontend_view.php
[edit]
[-] backend.php
[edit]
[-] backend.js
[edit]
[-] frontend_class.php
[edit]