| Server IP : 46.105.57.169 / Your IP : 216.73.216.144 Web Server : Apache System : Linux webd003.cluster120.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : maitricfuz ( 93378) PHP Version : 8.4.10 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/maitricfuz/www/new-saint-martin/administrator/components/com_mobilemenuck/models/ |
Upload File : |
<?php
/**
* @name Mobile Menu CK
* @copyright Copyright (C) 2017. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
* @author Cedric Keiflin - http://www.template-creator.com - http://www.joomlack.fr
*/
// No direct access.
defined('_JEXEC') or die;
use Joomla\Registry\Registry;
use Mobilemenuck\CKModel;
use Mobilemenuck\CKFof;
class MobilemenuckModelStyle extends CKModel {
protected $table = '#__mobilemenuck_styles';
var $item = null;
function __construct() {
parent::__construct();
}
public function getItem($id = 0) {
if (empty($this->item)) {
$id = $this->input->get('id', $id, 'int');
$this->item = CKFof::dbLoad($this->table, $id);
}
// transform params to \Joomla\Registry\Registry object
if (isset($this->item->params)) $this->item->params = new \Joomla\Registry\Registry($this->item->params);
return $this->item;
}
public function save($data) {
$input = \Joomla\CMS\Factory::getApplication()->input;
$id = (!empty($data['id'])) ? $data['id'] : (int) $this->getState('style.id');
$user = \Joomla\CMS\Factory::getUser();
// $data['htmlcode'] = JRequest::getVar('htmlcode', '', 'post', 'string', JREQUEST_ALLOWRAW);
$data['htmlcode'] = $data['htmlcode'] ? $data['htmlcode'] : $input->get('htmlcode', '', 'raw');
$data['htmlcode'] = str_replace(\Joomla\CMS\Uri\Uri::root(true), "|URIROOT|", $data['htmlcode']);
if (isset($data['options']) && is_array($data['options']))
{
$registry = new Registry;
$registry->loadArray($data['options']);
$data['params'] = (string) $registry;
}
if ($id) {
//Check the user can edit this item
$authorised = $user->authorise('core.edit', 'style.' . $id);
} else {
//Check the user can create new items in this section
$authorised = $user->authorise('core.create', 'com_mobilemenuck');
}
if ($authorised !== true) {
JError::raiseError(403, \Joomla\CMS\Language\Text::_('JERROR_ALERTNOAUTHOR'));
return false;
}
$table = $this->getTable();
$table->load($data['id']);
// if ($table->name !== $data['name']) {
// $this->changeTemplateName($table->name, $data['name']);
// }
// make a backup before save
MobilemenuckHelper::makeBackup($this->getData());
if ($table->save($data) === true) {
return $table->id;
} else {
return false;
}
}
}