Your IP : 216.73.216.11


Current Path : /home/digilove/public_html/components/com_bdthemes_shortcodes/views/like/
Upload File :
Current File : /home/digilove/public_html/components/com_bdthemes_shortcodes/views/like/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_shortcodesViewLike extends JMasterViewSU {

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

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

}