File manager - Edit - /home/jardides/www/Jardi-design/j37/administrator/components/com_fabrik/tables/visualization.php
Back
<?php /** * Visualization Fabrik Table * * @package Joomla * @subpackage Fabrik * @copyright Copyright (C) 2005-2016 Media A-Team, Inc. - All rights reserved. * @license GNU/GPL http://www.gnu.org/copyleft/gpl.html */ // No direct access defined('_JEXEC') or die('Restricted access'); use \Joomla\Registry\Registry; /** * Visualization Fabrik Table * * @package Joomla * @subpackage Fabrik * @since 3.0 */ class FabrikTableVisualization extends JTable { /** * Constructor * * @param JDatabaseDriver &$db database object */ public function __construct(&$db) { parent::__construct('#__{package}_visualizations', 'id', $db); } /** * Method to bind an associative array or object to the JTable instance.This * method only binds properties that are publicly accessible and optionally * takes an array of properties to ignore when binding. * * @param mixed $src An associative array or object to bind to the JTable instance. * @param mixed $ignore An optional array or space separated list of properties to ignore while binding. * * @return boolean True on success. */ public function bind($src, $ignore = array()) { if (isset($src['params']) && is_array($src['params'])) { $registry = new Registry; $registry->loadArray($src['params']); $src['params'] = (string) $registry; } parent::bind($src, $ignore); return true; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.03 |
proxy
|
phpinfo
|
Settings