Spade

Mini Shell

Directory:~$ /proc/self/root/home/lmsyaran/public_html/components/com_moojla/views/course_search/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ //proc/self/root/home/lmsyaran/public_html/components/com_moojla/views/course_search/view.html.php

<?php
/*----------------------------------------------------------------------------------|
 www.vdm.io  |----/
				Lmskaran 
/-------------------------------------------------------------------------------------------------------/

	@version		1.0.77
	@build			6th April, 2022
	@created		22nd July, 2020
	@package		Moojla
	@subpackage		view.html.php
	@author			Lmskaran <http://Lmskaran.com>	
	@copyright		Copyright (C) 2015. All Rights Reserved
	@license		GNU/GPL Version 2 or later -
http://www.gnu.org/licenses/gpl-2.0.html
  ____  _____  _____  __  __  __      __       ___  _____  __  __  ____ 
_____  _  _  ____  _  _  ____ 
 (_  _)(  _  )(  _  )(  \/  )(  )    /__\     / __)(  _  )(  \/  )(  _ \( 
_  )( \( )( ___)( \( )(_  _)
.-_)(   )(_)(  )(_)(  )    (  )(__  /(__)\   ( (__  )(_)(  )    (  )___/
)(_)(  )  (  )__)  )  (   )(  
\____) (_____)(_____)(_/\/\_)(____)(__)(__)   \___)(_____)(_/\/\_)(__) 
(_____)(_)\_)(____)(_)\_) (__) 

/------------------------------------------------------------------------------------------------------*/

// No direct access to this file
defined('_JEXEC') or die('Restricted access');

/**
 * Moojla View class for the Course_search
 */
class MoojlaViewCourse_search extends JViewLegacy
{
	// Overwriting JView display method
	function display($tpl = null)
	{		
		// get combined params of both component and menu
		$this->app = JFactory::getApplication();
		$this->params = $this->app->getParams();
		$this->menu = $this->app->getMenu()->getActive();
		// get the user object
		$this->user = JFactory::getUser();
		// Initialise variables.
		$this->items = $this->get('Items');
		
		/***[JCBGUI.site_view.php_jview_display.41.$$$$]***/
		require_once
JPATH_ADMINISTRATOR.'/components/com_moojla/models/course.php';
		$mmc= new MoojlaModelCourse;
		$this->table= $mmc->getTable();
		
		\JPluginHelper::importPlugin('moojlacourse');
		$this->dispatcher = JEventDispatcher::getInstance();
		
		$this->courses = $this->items['courses'];
		
		MoojlaHelper::calculate_price_from($this->courses);
		$menuTmpl=
$this->menu->getParams()->get('course_search_tmpl');
		if (!$menuTmpl)
		{
		  $tmpl=
JComponentHelper::getParams('com_moojla')->get('course_search_tmpl');
		  $tmpl= ($tmpl==  -1 || !$tmpl)? 'default_card': 
preg_replace('/\.php$/','',$tmpl);
		}
		else
		{
		  $tmpl= $menuTmpl;
		  $tmpl=  preg_replace('/\.php$/','',$tmpl);
		}
		$this->tmpl= $tmpl;
		$this->setLayout('default');/***[/JCBGUI$$$$]***/
		

		// Set the toolbar
		$this->addToolBar();

		// set the document
		$this->_prepareDocument();

		// Check for errors.
		if (count($errors = $this->get('Errors')))
		{
			throw new Exception(implode(PHP_EOL, $errors), 500);
		}

		parent::display($tpl);
	}

	/**
	 * Prepares the document
	 */
	protected function _prepareDocument()
	{

		// always make sure jquery is loaded.
		JHtml::_('jquery.framework');
		// Load the header checker class.
		require_once( JPATH_COMPONENT_SITE.'/helpers/headercheck.php'
);
		// Initialize the header checker.
		$HeaderCheck = new moojlaHeaderCheck;

		// always load these files.
		$this->document->addScript(JURI::root(true) .
"/media/com_moojla/pusher/js/pusher.min.js",
(MoojlaHelper::jVersion()->isCompatible("3.8.0")) ?
array("version" => "auto") :
"text/javascript");

		// Add View JavaScript File
		$this->document->addScript(JURI::root(true) .
"/components/com_moojla/assets/js/course_search.js",
(MoojlaHelper::jVersion()->isCompatible("3.8.0")) ?
array("version" => "auto") :
"text/javascript");
		
		/***[JCBGUI.site_view.php_document.41.$$$$]***/
		$menuid =
$this->app->getMenu()->getActive()->get('id');
		$this->document->addScriptOptions('menuid', $menuid);
		
		$maxCost = isset($this->items[0]->maxCost)?
$this->items[0]->maxCost: 100;
		$this->document->addScriptOptions('maxCost',$maxCost);
		/***[/JCBGUI$$$$]***/
		
		// add the document default css file
		$this->document->addStyleSheet(JURI::root(true)
.'/components/com_moojla/assets/css/course_search.css',
(MoojlaHelper::jVersion()->isCompatible('3.8.0')) ?
array('version' => 'auto') : 'text/css');
	}

	/**
	 * Setting the toolbar
	 */
	protected function addToolBar()
	{
		
		// set help url for this view if found
		$help_url = MoojlaHelper::getHelpUrl('course_search');
		if (MoojlaHelper::checkString($help_url))
		{
			JToolbarHelper::help('COM_MOOJLA_HELP_MANAGER', false,
$help_url);
		}
		// now initiate the toolbar
		$this->toolbar = JToolbar::getInstance();
	}

	/**
	 * Escapes a value for output in a view script.
	 *
	 * @param   mixed  $var  The output to escape.
	 *
	 * @return  mixed  The escaped value.
	 */
	public function escape($var, $sorten = false, $length = 40)
	{
		// use the helper htmlEscape method instead.
		return MoojlaHelper::htmlEscape($var, $this->_charset, $sorten,
$length);
	}
}