Файловый менеджер - Редактировать - /home/lmsyaran/public_html/joomla5/administrator/components/com_fabrik/tables/cron.php
Назад
<?php /** * Cron Fabrik Table * * @package Joomla * @subpackage Fabrik * @copyright Copyright (C) 2005-2020 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\CMS\Table\Table; use \Joomla\Registry\Registry; require_once JPATH_ADMINISTRATOR . '/components/com_fabrik/tables/fabtable.php'; /** * Cron Fabrik Table * * @package Joomla * @subpackage Fabrik * @since 3.0 */ class FabrikTableCron extends FabTable { /** * Constructor * * @param JDatabaseDriver &$db database object */ public function __construct(&$db) { parent::__construct('#__fabrik_cron', 'id', $db); } /** * Overloaded bind function * * @param mixed $src An associative array or object to bind to the Table 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; } return parent::bind($src, $ignore); } /** * Method to store a row in the database from the Table instance properties. * If a primary key value is set the row with that primary key value will be * updated with the instance property values. If no primary key value is set * a new row will be inserted into the database with the properties from the * Table instance. * * @param boolean $updateNulls True to update fields even if they are null. * * @return boolean True on success. * * @link http://docs.joomla.org/Table/store * @since 11.1 */ public function store($updateNulls = true) { return parent::store($updateNulls); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0.01 |
proxy
|
phpinfo
|
Настройка