| Current Path : /home/bonneesp/www/administrator/components/com_gallery_wd/views/shortcode/ |
| Current File : /home/bonneesp/www/administrator/components/com_gallery_wd/views/shortcode/view.html.php |
<?php
/**
* @package Gallery WD
* @author Web-Dorado
* @copyright (C) 2014 Web-Dorado. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
defined('_JEXEC') or die('Restricted access');
jimport('joomla.application.component.view');
class gallery_wdViewShortcode extends JViewLegacy {
////////////////////////////////////////////////////////////////////////////////////////
// Events //
////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////
// Constants //
////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////
// Variables //
////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////
// Constructor & Destructor //
////////////////////////////////////////////////////////////////////////////////////////
public function __construct() {
parent::__construct();
}
////////////////////////////////////////////////////////////////////////////////////////
// Public Methods //
////////////////////////////////////////////////////////////////////////////////////////
public function display($tpl = null) {
JToolBarHelper::title(JText::_('Generate Shortcode'));
$model = $this->getModel();
$this->get_gallery_rows_data=$model->get_gallery_rows_data();
$this->get_album_rows_data=$model->get_album_rows_data();
$this->get_option_row_data=$model->get_option_row_data();
$this->get_theme_rows_data=$model->get_theme_rows_data();
parent::display($tpl);
}
////////////////////////////////////////////////////////////////////////////////////////
// Getters & Setters //
////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////
// Private Methods //
////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////
// Listeners //
////////////////////////////////////////////////////////////////////////////////////////
}