Server : LiteSpeed System : Linux server 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64 User : alsaif ( 1057) PHP Version : 7.4.33 Disable Function : show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/alsaif/public_html/administrator/components/com_convertforms/models/ |
<?php
/**
* @package Convert Forms
* @version 4.3.3 Pro
*
* @author Tassos Marinos <info@tassos.gr>
* @link https://www.tassos.gr
* @copyright Copyright © 2023 Tassos All Rights Reserved
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
*/
defined('_JEXEC') or die('Restricted access');
// import Joomla modelform library
jimport('joomla.application.component.modeladmin');
/**
* Campaign Model Class
*/
class ConvertFormsModelCampaign extends JModelAdmin
{
/**
* Returns a reference to the a Table object, always creating it.
*
* @param type The table type to instantiate
* @param string A prefix for the table class name. Optional.
* @param array Configuration array for model. Optional.
* @return JTable A database object
* @since 2.5
*/
public function getTable($type = 'Campaign', $prefix = 'ConvertFormsTable', $config = array())
{
return JTable::getInstance($type, $prefix, $config);
}
/**
* Method to get the record form.
*
* @param array $data Data for the form.
* @param boolean $loadData True if the form is to load its own data (default case), false if not.
* @return mixed A JForm object on success, false on failure
* @since 2.5
*/
public function getForm($data = array(), $loadData = true)
{
// Get the form.
$form = $this->loadForm('com_convertforms.campaign', 'campaign', array('control' => 'jform', 'load_data' => $loadData));
if (empty($form))
{
return false;
}
return $form;
}
/**
* Method to get the data that should be injected in the form.
*
* @return mixed The data for the form.
*/
protected function loadFormData()
{
// Check the session for previously entered form data.
$data = JFactory::getApplication()->getUserState('com_convertforms.edit.campaign.data', array());
if (empty($data))
{
$data = $this->getItem();
}
return $data;
}
/**
* Method to validate form data.
*/
public function validate($form, $data, $group = null)
{
$newdata = array();
$params = array();
$this->_db->setQuery('SHOW COLUMNS FROM #__convertforms_campaigns');
$dbkeys = $this->_db->loadObjectList('Field');
$dbkeys = array_keys($dbkeys);
foreach ($data as $key => $val)
{
if (in_array($key, $dbkeys))
{
$newdata[$key] = $val;
}
else
{
$params[$key] = $val;
}
}
$newdata['params'] = json_encode($params);
return $newdata;
}
/**
* [getItem description]
*
* @param [type] $pk [description]
*
* @return [type] [description]
*/
public function getItem($pk = null)
{
if ($item = parent::getItem($pk))
{
$params = $item->params;
if (is_array($params) && count($params))
{
foreach ($params as $key => $value)
{
if (!isset($item->$key) && !is_object($value))
{
$item->$key = $value;
}
}
unset($item->params);
}
}
return $item;
}
/**
* Method to copy an item
*
* @access public
* @return boolean True on success
*/
function copy($id)
{
$item = $this->getItem($id);
$item->id = 0;
$item->published = 0;
$item->name = JText::sprintf('NR_COPY_OF', $item->name);
$item = $this->validate(null, get_object_vars($item));
return ($this->save($item));
}
}