Your IP : 216.73.216.134


Current Path : /home/bijouxly/www/components/com_rsform/models/
Upload File :
Current File : /home/bijouxly/www/components/com_rsform/models/rsform.php

<?php
/**
* @package RSForm! Pro
* @copyright (C) 2007-2014 www.rsjoomla.com
* @license GPL, http://www.gnu.org/copyleft/gpl.html
*/

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

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

class RSFormModelRSForm extends JModelLegacy
{
	var $params;
	
	function __construct()
	{
		parent::__construct();
		
		$app 			= JFactory::getApplication();
		$this->params 	= $app->getParams('com_rsform');
	}

	function getFormId()
	{
		$formId = JRequest::getInt('formId');
		return $formId ? $formId : $this->params->get('formId');
	}
	
	function getParams()
	{
		return $this->params;
	}
}