Exemplo n.º 1
0
    ?>
">
				<td class="center">
					<?php 
    echo JHtml::_('grid.id', $i, $item->id);
    ?>
				</td>
				<td align="center">
					<?php 
    if ($item->item_image) {
        ?>
<img alt="<?php 
        echo $item->image_caption;
        ?>
" src="<?php 
        echo DJCatalog2ImageHelper::getImageUrl($item->image_fullpath, 'thumb', $item->image_path);
        ?>
"/><?php 
    } else {
        ?>
<img src="<?php 
        echo str_replace('/administrator', '', JURI::base()) . 'components/com_djcatalog2/assets/images/noimage.jpg';
        ?>
" alt="" /><?php 
    }
    ?>
				</td>
				<td>
					<?php 
    if ($item->checked_out) {
        ?>
Exemplo n.º 2
0
            ?>
" src="<?php 
            echo DJCatalog2ImageHelper::getImageUrl($item->image_fullpath, 'medium');
            ?>
"/></a>
				<?php 
        } else {
            ?>
					<a href="<?php 
            echo JRoute::_(DJCatalogHelperRoute::getItemRoute($item->slug, !isset($this->item) || empty($this->item->catslug) ? $item->catslug : $this->item->catslug));
            ?>
"><img class="img-polaroid" alt="<?php 
            echo $item->image_caption;
            ?>
" src="<?php 
            echo DJCatalog2ImageHelper::getImageUrl($item->image_fullpath, 'medium');
            ?>
"/></a>
	        	<?php 
        }
        ?>
        	</div>
		<?php 
    }
    ?>
		<?php 
    if ((int) $this->params->get('show_item_name', '1') > 0) {
        ?>
		<div class="djc_title">
	        <h3>
	        <?php 
Exemplo n.º 3
0
                ?>
" src="<?php 
                echo DJCatalog2ImageHelper::getImageUrl($item->image_fullpath, 'small');
                ?>
"/></a>
						<?php 
            } else {
                ?>
							<a href="<?php 
                echo JRoute::_(DJCatalogHelperRoute::getItemRoute($item->slug, !isset($this->item) || empty($this->item->catslug) ? $item->catslug : $this->item->catslug));
                ?>
"><img class="img-polaroid" alt="<?php 
                echo $item->image_caption;
                ?>
" src="<?php 
                echo DJCatalog2ImageHelper::getImageUrl($item->image_fullpath, 'small');
                ?>
"/></a>
			        	<?php 
            }
            ?>
		        	</div>
				<?php 
        }
        ?>
	            </td>
            <?php 
    }
    ?>
            <?php 
    if ((int) $this->params->get('show_item_name', '1') > 0) {
Exemplo n.º 4
0
 function getXml()
 {
     $app = JFactory::getApplication();
     $jinput = $app->input;
     $this->_cparams = $app->getParams('com_djcatalog2');
     $moduleclass_sfx = $jinput->get('moduleclass_sfx', null, 'string');
     $mid = (int) $jinput->get('moduleId', null, 'int');
     $stitle = $jinput->get('stitle', '1', 'string');
     $ltitle = $jinput->get('ltitle', '1', 'string');
     $modal = $jinput->get('modal', 1, 'int');
     $scattitle = $jinput->get('scattitle', null, 'string');
     $sproducer = $jinput->get('sproducer', '0', 'string');
     $sprice = $jinput->get('sprice', '0', 'string');
     $spag = $jinput->get('spag', null, 'int');
     //$orderby = $jinput->get( 'orderby', null, 'get', 'int', 0);
     //$orderdir = $jinput->get( 'orderdir', 0, 'get', 'int', 0);
     //$featured_only = $jinput->get( 'featured_only', 0, 'get', 'int', 0);
     //$featured_first = $jinput->get( 'featured_first', 0, 'get', 'int', 0);
     $cols = (int) $jinput->get('cols', null, 'int');
     $rows = (int) $jinput->get('rows', null, 'int');
     //$mainimage = $jinput->get( 'mainimg', 'large', 'get', 'string', 0);
     $trunc = (int) $jinput->get('trunc', '0', 'int');
     $trunclimit = (int) $jinput->get('trunclimit', '0', 'int');
     $showreadmore = (int) $jinput->get('showreadmore', '1', 'int');
     $readmoretext = $jinput->get('readmoretext', '', 'string');
     $readmoretext = $readmoretext != '' ? urldecode($readmoretext) : JText::_('COM_DJCATALOG2_READMORE');
     $paginationStart = (int) $jinput->get('pagstart', null, 'int');
     $categories = $jinput->get('categories', null, 'string');
     $catsw = $jinput->get('catsw', 0, 'int');
     $categories = explode('|', $categories);
     $largewidth = $jinput->get('largewidth', '400', 'int');
     $largeheight = $jinput->get('largeheight', '240', 'int');
     $largecrop = $jinput->get('largecrop', 1, 'int') ? true : false;
     $smallwidth = $jinput->get('smallwidth', '90', 'int');
     $smallheight = $jinput->get('smallheight', '70', 'int');
     $smallcrop = $jinput->get('smallcrop', 1, 'int') ? true : false;
     $Itemid = $jinput->get('Itemid', 0, 'int');
     $path = JURI::base();
     $itemsCount = $this->getTotal();
     $itemsPerPage = $rows * $cols;
     $paginationBar = null;
     //if ($spag == 1) {
     $paginationBar = '<pagination><![CDATA[';
     if ($itemsCount > $itemsPerPage && $itemsPerPage > 0) {
         if ((int) $spag == 1) {
             for ($i = 0; $i < $itemsCount; $i = $i + $itemsPerPage) {
                 $counter = (int) (($i + $itemsPerPage) / $itemsPerPage);
                 if ($paginationStart == $i) {
                     $active = ' active';
                 } else {
                     $active = '';
                 }
                 $paginationBar .= '<span class="btn' . $active . ' button" style="cursor: pointer;" onclick="DJFrontpage_' . $mid . '.loadPage(' . $i . '); return false;">' . $counter . '</span>&nbsp;';
             }
         } else {
             $prevPage = $paginationStart - $itemsPerPage;
             $nextPage = $paginationStart + $itemsPerPage;
             $firstPage = 0;
             $lastPage = $itemsPerPage * (ceil($itemsCount / $itemsPerPage) - 1);
             if ($paginationStart == 0) {
                 $prevPage = $lastPage;
             }
             if ($paginationStart == $lastPage) {
                 $nextPage = $firstPage;
             }
             $paginationBar .= '<span class="djcf_prev_button" style="cursor: pointer;" onclick="DJFrontpage_' . $mid . '.loadPage(' . $prevPage . '); return false;"></span>&nbsp;';
             $paginationBar .= '<span class="djcf_next_button" style="cursor: pointer;" onclick="DJFrontpage_' . $mid . '.loadPage(' . $nextPage . '); return false;"></span>';
         }
     }
     $paginationBar .= ']]></pagination>';
     //}
     $items = $this->getList($paginationStart, $itemsPerPage);
     $output = '<?xml version="1.0" encoding="utf-8" ?><contents>';
     $gallery = '';
     for ($i = 0; $i < count($items); $i++) {
         $title = '';
         $readmore = JRoute::_(DJCatalogHelperRoute::getItemRoute($items[$i]->slug, $items[$i]->catslug));
         if ($stitle == '1') {
             if ($ltitle) {
                 $title = '<h3><a href="' . $readmore . '">' . $items[$i]->name . '</a></h3>';
             } else {
                 $title = '<h3>' . $items[$i]->name . '</h3>';
             }
         }
         $cattitle = '';
         if ($scattitle == 1) {
             $cattitle = '<h2>' . $items[$i]->category . '</h2>';
         }
         $producer = '';
         if ($sproducer == 1 && $items[$i]->producer) {
             $producer = '<div class="djc_producer">' . JText::_('COM_DJCATALOG2_PRODUCER') . ': ' . $items[$i]->producer . '</div>';
         }
         $price = '';
         if ($sprice == 1 && $items[$i]->price > 0) {
             if ($items[$i]->special_price) {
                 $price = JText::_('COM_DJCATALOG2_PRICE') . ': <span class="djc_price_old">' . $items[$i]->price . '</span>&nbsp;<span class="djc_price_new">' . $items[$i]->special_price . '</span>';
             } else {
                 $price = JText::_('COM_DJCATALOG2_PRICE') . ': <span class="djc_price">' . $items[$i]->price . '</span>';
             }
             $price = '<div class="djc_price">' . $price . '</div>';
         }
         if ($trunc > 0 && $trunclimit > 0) {
             $items[$i]->intro_desc = DJCatalog2HtmlHelper::trimText($items[$i]->intro_desc, $trunclimit);
         } else {
             if ($trunc > 0 && $trunclimit == -1) {
                 $items[$i]->intro_desc = '';
             }
         }
         $items[$i]->intro_desc = $producer . $price . $items[$i]->intro_desc;
         $output .= '<content>';
         if ($scattitle == 1) {
             $output .= '<category><![CDATA[' . $cattitle . ']]></category>';
         }
         $output .= '<text><![CDATA[' . $title . '<div class="djf_desc">' . $items[$i]->intro_desc . '</div>';
         if ($showreadmore == '1') {
             $output .= '<a class="btn btn-primary btn-large" href="' . $readmore . '">' . $readmoretext . '</a>';
         }
         $output .= ']]></text>';
         $output .= '<image><![CDATA[' . DJCatalog2ImageHelper::getProcessedImage($items[$i]->item_image, $largewidth, $largeheight, !$largecrop, $items[$i]->image_path) . ']]></image>';
         if ($modal == 1) {
             $output .= '<src><![CDATA[' . DJCatalog2ImageHelper::getImageUrl($items[$i]->image_fullpath, 'fullscreen') . ']]></src>';
         } else {
             $output .= '<src><![CDATA[' . $readmore . ']]></src>';
         }
         $output .= '</content>';
         if ($items[$i]->item_image) {
             $gallery .= '<thumb><![CDATA[<div class="djf_cell img-polaroid"><a href="' . $readmore . '" onclick="DJFrontpage_' . $mid . '.loadItem(' . $i . '); return false;"><img src="' . DJCatalog2ImageHelper::getProcessedImage($items[$i]->item_image, $smallwidth, $smallheight, !$smallcrop, $items[$i]->image_path) . '" alt="' . $items[$i]->image_caption . '" /></a></div>]]></thumb>';
         } else {
             $gallery .= '<thumb><![CDATA[]]></thumb>';
         }
     }
     $all = $output . $gallery . $paginationBar;
     $all .= '</contents>';
     return $all;
 }
Exemplo n.º 5
0
            ?>
" src="<?php 
            echo DJCatalog2ImageHelper::getImageUrl($subcategory->image_fullpath, 'medium');
            ?>
"/></a>
	        		<?php 
        } else {
            ?>
	        			<a href="<?php 
            echo JRoute::_(DJCatalogHelperRoute::getCategoryRoute($subcategory->id . ':' . $subcategory->alias));
            ?>
"><img class="img-polaroid" alt="<?php 
            echo $subcategory->image_caption;
            ?>
" src="<?php 
            echo DJCatalog2ImageHelper::getImageUrl($subcategory->image_fullpath, 'medium');
            ?>
"/></a>
	        		<?php 
        }
        ?>
				</div>
			<?php 
    }
    ?>
			<div class="djc_title">
				<h3>
					<a href="<?php 
    echo JRoute::_(DJCatalogHelperRoute::getCategoryRoute($subcategory->id . ':' . $subcategory->alias));
    ?>
">
Exemplo n.º 6
0
 function display($tpl = null)
 {
     $app = JFactory::getApplication();
     $document = JFactory::getDocument();
     $model = $this->getModel();
     $config = JFactory::getConfig();
     $siteEmail = $config->get('mailfrom');
     $fromName = $config->get('fromname');
     $feedEmail = $config->get('feed_email', 'author');
     $document->editor = $fromName;
     if ($feedEmail != 'none') {
         $document->editorEmail = $siteEmail;
     }
     $menus = $app->getMenu('site');
     $menu = $menus->getActive();
     $mOption = empty($menu->query['option']) ? null : $menu->query['option'];
     $mCatid = empty($menu->query['cid']) ? null : (int) $menu->query['cid'];
     $mProdid = empty($menu->query['pid']) ? null : (int) $menu->query['pid'];
     $filter_catid = $app->input->get('cid', null, 'int');
     if ($filter_catid === null && $mOption == 'com_djcatalog2' && $mCatid) {
         $filter_catid = $mCatid;
         $app->input->set('cid', $filter_catid);
     }
     $filter_producerid = $app->input->get('pid', null, 'string');
     if ($filter_producerid === null && $mOption == 'com_djcatalog2' && $mProdid) {
         $filter_producerid = $mProdid;
         $app->input->set('pid', $filter_producerid);
     }
     $params = Djcatalog2Helper::getParams();
     $params->set('product_catalogue', false);
     $filter_order = $params->get('rss_items_default_order', 'i.date');
     $filter_order_Dir = $params->get('rss_items_default_order_dir', 'desc');
     $limitstart = $app->input->get('limitstart', 0, 'int');
     $limit_items_show = $params->get('rss_limit_items_show', $config->get('feed_limit', 10));
     $app->input->set('limit', $limit_items_show);
     $dispatcher = JDispatcher::getInstance();
     $categories = Djc2Categories::getInstance(array('state' => '1'));
     // current category
     $category = $categories->get((int) $app->input->get('cid', 0, 'default'));
     $subcategories = null;
     if (!empty($category)) {
         $subcategories = $category->getChildren();
     }
     /* If Cateogory not published set 404 */
     if ($category && $category->id > 0 && $category->published == 0 || empty($category)) {
         throw new Exception(JText::_('COM_DJCATALOG2_PRODUCT_NOT_FOUND'), 404);
     }
     $title = $params->get('page_title', '');
     if ($menu && ($menu->query['option'] != 'com_djcatalog2' || $menu->query['view'] != 'items' || $id != $category->id)) {
         if (!empty($category->metatitle)) {
             $title = $category->metatitle;
         } else {
             if ($category->name && $category->id > 0) {
                 $title = $category->name;
             }
         }
     }
     if (empty($title)) {
         $title = $config->get('sitename');
     }
     $document->setTitle($title);
     $rows = $model->getItems();
     $document->link = JRoute::_(DJCatalogHelperRoute::getCategoryRoute($category->catslug));
     foreach ($rows as $row) {
         // Strip html from feed item title
         $title = $this->escape($row->name);
         $title = html_entity_decode($title, ENT_COMPAT, 'UTF-8');
         // Compute the article slug
         $row->slug = $row->alias ? $row->id . ':' . $row->alias : $row->id;
         // Url link to article
         $link = JRoute::_(DJCatalogHelperRoute::getItemRoute($row->slug, $category->id == 0 ? $row->catslug : $category->catslug));
         // Get description, author and date
         $date = $row->created;
         // Load individual item creator class
         $item = new JFeedItem();
         $item->title = $title;
         $item->link = $link;
         $item->date = $date;
         $item->author = $row->author;
         $item->category = $category->id == 0 ? $row->category : $category->name;
         //$item->authorEmail = $siteEmail;
         if ($feedEmail == 'site') {
             $item->authorEmail = $siteEmail;
         } else {
             if ($feedEmail === 'author') {
                 $item->authorEmail = $row->author_email;
             }
         }
         $description = '';
         if ($row->item_image && (int) $params->get('rss_image_link_item', '1')) {
             //$item->image = new JFeedImage();
             //$item->image->url = DJCatalog2ImageHelper::getImageUrl($row->item_image,'small');
             //$item->image->link = $item->link;
             //$item->image->title = $row->image_caption;
             $description .= '<img src="' . DJCatalog2ImageHelper::getImageUrl($row->image_fullpath, 'small') . '" alt="' . $row->image_caption . '"/>';
         }
         if ($params->get('rss_description_type', '1') != '0') {
             $description .= $params->get('rss_description_type', '1') == '1' && $row->intro_desc ? $row->intro_desc : $row->description;
             if ($params->get('rss_showreadmore_item', '1')) {
                 $description .= '<p class="feed-readmore"><a target="_blank" href ="' . $item->link . '">' . JText::_('COM_DJCATALOG2_READMORE') . '</a></p>';
             }
         }
         // Load item description and add div
         $item->description = '<div class="feed-description">' . $description . '</div>';
         // Loads item info into rss array
         $document->addItem($item);
     }
 }