Your IP : 216.73.216.11


Current Path : /home/digilove/public_html/components/com_bdthemes_shortcodes/views/download/
Upload File :
Current File : /home/digilove/public_html/components/com_bdthemes_shortcodes/views/download/view.html.php

<?php

/**
 * BDThemes Shortcodes Component
 *
 * @package		Joomla
 * @subpackage	BDThemes Schortcodes Component
 * @copyright Copyright (C) 2011 BDThemes Ltd. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * @author BDThemes
 * @author url http://bdthemes.com
 */
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');

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

class Bdthemes_shortcodesViewDownload extends JMasterViewSU {

    /**
     * the main disply function
     */
    public function display($tpl = null) {

        $jinput = JFactory::getApplication()->input;
        /*
         * download file
         */
        if ( ($jinput->get->get('id', -1) != -1) ||  ($jinput->post->get('download', -1) != -1)) {
            require_once( BDT_SU_ROOT . DIRECTORY_SEPARATOR . 'shortcodes' . DIRECTORY_SEPARATOR . 'file_download' . DIRECTORY_SEPARATOR . 'helper' . DIRECTORY_SEPARATOR . 'download.php');
        }
        exit;
    }

}