예제 #1
0
파일: view.php 프로젝트: paisit/pyzid
" class="gkIsWrapper-gk_photo">
	<div class="gkIsPreloader"><span></span></div>
	
	<?php 
for ($i = 0; $i < count($this->config['image_show_data']); $i++) {
    ?>
	<?php 
    if ($this->config['image_show_data'][$i]->published) {
        ?>
		<?php 
        unset($path, $title, $link, $content);
        // creating slide path
        $path = '';
        // check if the slide have to be generated or not
        if ($this->config['generate_thumbnails'] == 1) {
            $path = $uri->root() . 'modules/mod_image_show_gk4/cache/' . GKIS_Photo_Image::translateName($this->config['image_show_data'][$i]->image, $this->config['module_id']);
        } else {
            $path = $uri->root();
            $path .= $this->config['image_show_data'][$i]->image;
        }
        $content = '';
        if ($this->config['image_show_data'][$i]->type == "k2") {
            if (isset($this->articlesK2[$this->config['image_show_data'][$i]->artK2_id])) {
                $title = htmlspecialchars($this->articlesK2[$this->config['image_show_data'][$i]->artK2_id]["title"]);
                $content = $title;
                $link = $this->articlesK2[$this->config['image_show_data'][$i]->artK2_id]["link"];
            } else {
                $title = 'Selected article doesn\'t exist!';
                $content = $title;
                $link = '#';
            }