PATH:
home
/
letacommog
/
letaweb
/
admin
/
modules
/
cycleslider
<div id="slider<?php echo $this->page_id ?>" class="images"> <?php if (isset($this->images)): ?> <?php $i = 0; ?> <?php foreach ($this->images as $item): ?> <?php $src = $item['src']; ?> <img src="<?php echo $src ?>" /> <?php $i = $i + 1; ?> <?php endforeach; ?> <?php endif; ?> </div> <script type="text/javascript"> $(document).ready(function() { var width = $('#<?php echo $this->page_id ?>').width(); var height = width * 9 / 16; $('#slider<?php echo $this->page_id ?>').cycle ( { width : width, height: height, containerResize: 0, fit: 1, <?php $settings = (array) $this->settings; $array_keys = array_keys($settings); foreach ($array_keys as $k) { if (isset($this->settings[$k]) && $this->data->settings[$k] != 'undefined') { $v = is_numeric($this->settings[$k]); $t = $this->settings[$k] == 'true' || $this->settings[$k] == 'false'; if ($v || $t) { echo $k.':'.$this->settings[$k].','; } else { echo $k.':"'.$this->settings[$k].'",'; } } } ?> <?php ?> } ); }); </script>
[+]
..
[-] frontend_script.php
[edit]
[-] frontend_view.php
[edit]
[-] backend.js
[edit]