Spade

Mini Shell

Directory:~$ /home/lmsyaran/public_html/components/com_rsmembership/views/mytransactions/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/public_html/components/com_rsmembership/views/mytransactions/view.html.php

<?php
/**
 * @package	RSMembership!
 * @copyright	(c) 2009 - 2020 RSJoomla!
 * @link		https://www.rsjoomla.com
 * @license	GNU General Public License
http://www.gnu.org/licenses/gpl-3.0.en.html
 */

defined('_JEXEC') or die('Restricted access');

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

class RSMembershipViewMytransactions extends JViewLegacy
{
    public function display($tpl = null)
    {
        $app                = JFactory::getApplication();
        $this->params 		=
clone($app->getParams('com_rsmembership'));
        $this->items 		= $this->get('Items');
        $this->pagination  	= $this->get('pagination');
        $this->total 		= $this->get('total');
        $this->action		=
$this->escape(JRoute::_(JUri::getInstance(),false));
        $this->date_format	=
RSMembershipHelper::getConfig('date_format');
        $this->limitstart	=
$app->input->get('limitstart', 0, 'int');

        if ($this->params->get('show_details', 1)) {
            $this->cache = RSMembershipHelper::getCache();
        }

        if (empty($this->items) &&
empty($this->transactions)) {
           
$app->enqueueMessage(JText::_('COM_RSMEMBERSHIP_NO_TRANSACTIONS_INITIATED'),
'notice');
        }

        $Itemid = $app->input->get('Itemid',0,
'int');
        if ($Itemid > 0)
            $this->Itemid  	= '&Itemid='.$Itemid;
        else
            $this->Itemid	= '';

        // Because the application sets a default page title,
        // we need to get it from the menu item itself
        $active = $app->getMenu()->getActive();
        if ($active
            && $active->component ==
'com_rsmembership'
            && isset($active->query['view'])
            && $active->query['view'] ==
'mytransactions')
        {
            $this->params->def('page_heading',
$this->params->get('page_title', $active->title));
        }

        // Description
        if ($this->params->get('menu-meta_description'))
           
$this->document->setDescription($this->params->get('menu-meta_description'));
        // Keywords
        if ($this->params->get('menu-meta_keywords'))
            $this->document->setMetadata('keywords',
$this->params->get('menu-meta_keywords'));
        // Robots
        if ($this->params->get('robots'))
            $this->document->setMetadata('robots',
$this->params->get('robots'));

        parent::display();
    }
}