| Server IP : 87.98.154.146 / Your IP : 216.73.216.101 Web Server : Apache System : Linux webm005.cluster126.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : bsiadvisil ( 110003) PHP Version : 7.3.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/bsiadvisil/www/administrator/components/com_rsform/models/ |
Upload File : |
<?php
/**
* @package RSForm! Pro
* @copyright (C) 2007-2014 www.rsjoomla.com
* @license GPL, http://www.gnu.org/licenses/gpl-2.0.html
*/
defined('_JEXEC') or die('Restricted access');
class RsformModelRsform extends JModelLegacy
{
protected $config;
public function __construct() {
parent::__construct();
$this->config = RSFormProConfig::getInstance();
}
public function getCode() {
return $this->config->get('global.register.code');
}
public function getSideBar() {
require_once JPATH_COMPONENT.'/helpers/toolbar.php';
return RSFormProToolbarHelper::render();
}
public function getButtons() {
JFactory::getLanguage()->load('com_rsfirewall.sys', JPATH_ADMINISTRATOR);
/* $button = array(
'access', 'id', 'link', 'target', 'onclick', 'title', 'image', 'alt', 'text'
); */
$buttons = array(
array(
'link' => JRoute::_('index.php?option=com_rsform&view=forms'),
'image' => 'components/com_rsform/assets/images/forms.png',
'text' => JText::_('RSFP_MANAGE_FORMS'),
'access' => true,
'target' => ''
),
array(
'link' => JRoute::_('index.php?option=com_rsform&view=submissions'),
'image' => 'components/com_rsform/assets/images/viewdata.png',
'text' => JText::_('RSFP_MANAGE_SUBMISSIONS'),
'access' => true,
'target' => ''
),
array(
'link' => JRoute::_('index.php?option=com_rsform&view=directory'),
'image' => 'components/com_rsform/assets/images/directory.png',
'text' => JText::_('RSFP_MANAGE_DIRECTORY_SUBMISSIONS'),
'access' => true,
'target' => ''
),
array(
'link' => JRoute::_('index.php?option=com_rsform&view=backuprestore'),
'image' => 'components/com_rsform/assets/images/backup.png',
'text' => JText::_('RSFP_BACKUP_RESTORE'),
'access' => true,
'target' => ''
),
array(
'link' => JRoute::_('index.php?option=com_rsform&view=configuration'),
'image' => 'components/com_rsform/assets/images/config.png',
'text' => JText::_('RSFP_CONFIGURATION'),
'access' => true,
'target' => ''
),
array(
'link' => 'https://www.rsjoomla.com/support/documentation/rsform-pro/plugins-and-modules.html',
'image' => 'components/com_rsform/assets/images/samples.png',
'text' => JText::_('RSFP_PLUGINS'),
'access' => true,
'target' => '_blank'
),
array(
'link' => 'https://www.rsjoomla.com/support/documentation/rsform-pro.html',
'image' => 'components/com_rsform/assets/images/docs.png',
'text' => JText::_('RSFP_USER_GUIDE'),
'access' => true,
'target' => '_blank'
),
array(
'link' => 'https://www.rsjoomla.com/support.html',
'image' => 'components/com_rsform/assets/images/support.png',
'text' => JText::_('RSFP_SUPPORT'),
'access' => true,
'target' => '_blank'
),
);
return $buttons;
}
}