PATH:
home
/
sparklp6
/
public_html
/
sparklerfilters-org
/
administrator
/
components
/
com_j2store
/
helpers
<?php /** * @package J2Store * @copyright Copyright (c)2014-17 Ramesh Elamathi / J2Store.org * @license GNU GPL v3 or later */ // No direct access to this file defined ( '_JEXEC' ) or die (); class J2ViewHelper extends JObject { public static $instance = null; protected $state; protected $template_path = ''; protected $default_path = ''; protected $default_template = null; public static function getInstance(array $config = array()) { if (!self::$instance) { self::$instance = new self($config); } return self::$instance; } public function setTemplateOverridePath($path) { $this->template_path = $path; } public function getTemplateOverridePath() { return $this->template_path; } public function setDefaultViewPath($path) { $this->default_path = $path; } public function getDefaultViewPath() { return $this->default_path; } /** * @param $layout the Path of the layout file * @return string */ function getOutput($layout) { ob_start(); $layout = $this->_getLayoutPath($layout); if(!empty($layout)) { include($layout); $html = ob_get_contents(); }else { $html = ''; } ob_end_clean(); return $html; } /** * Get the path to a layout file * * @param string $plugin The name of the plugin file * @param string $group The plugin's group * @param string $layout The name of the plugin layout file * @return string The path to the plugin layout file * @access protected */ function _getLayoutPath($layout = 'default') { $app = JFactory::getApplication(); // get the template and default paths for the layout $templatePath = $this->getTemplateOverridePath().'/'.$layout.'.php'; $defaultPath = $this->getDefaultViewPath().'/'.$layout.'.php'; // if the site template has a layout override, use it jimport('joomla.filesystem.file'); if (JFile::exists( $templatePath )) { return $templatePath; } elseif(JFile::exists( $defaultPath)) { return $defaultPath; }else { return ''; } } public function getTemplate($client = 'site') { if($client == 'admin') { $app_client = 1; }else{ $app_client = 0; } if(!isset($this->default_template)) { $db = JFactory::getDbo(); $query = "SELECT template FROM #__template_styles WHERE client_id = ".$app_client." AND home=1"; $db->setQuery( $query ); $this->default_template = $db->loadResult(); } return $this->default_template; } }
[-] email.php
[edit]
[-] version.php
[edit]
[-] plugin.php
[edit]
[-] j2store.php
[edit]
[-] config.php
[edit]
[-] index.html
[edit]
[-] queue.php
[edit]
[-] length.php
[edit]
[-] weight.php
[edit]
[-] router.php
[edit]
[-] cart.php
[edit]
[-] currency.php
[edit]
[-] modules.php
[edit]
[-] toolbar.php
[edit]
[-] product.php
[edit]
[-] strapper.php
[edit]
[-] select.php
[edit]
[-] j2html.php
[edit]
[-] view.php
[edit]
[-] message.php
[edit]
[-] article.php
[edit]
[-] help.php
[edit]
[-] input.php
[edit]
[-] utilities.php
[edit]
[+]
..
[-] invoice.php
[edit]
[-] user.php
[edit]