Файловый менеджер - Редактировать - /home/digilove/public_html/administrator/components/com_gsd/models/config.php
Назад
<?php /** * @package Google Structured Data * @version 5.6.5 Pro * * @author Tassos Marinos <info@tassos.gr> * @link http://www.tassos.gr * @copyright Copyright © 2021 Tassos Marinos All Rights Reserved * @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later */ defined('_JEXEC') or die('Restricted access'); use Joomla\CMS\MVC\Model\AdminModel; use Joomla\CMS\Table\Table; use Joomla\CMS\Form\Form; /** * Config Model Class */ class GSDModelConfig extends AdminModel { /** * 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 Table A database object * @since 2.5 */ public function getTable($type = 'Config', $prefix = 'GSDTable', $config = array()) { return Table::getInstance($type, $prefix, $config); } /** * Method to allow derived classes to preprocess the form. * * @param Form $form A Form object. * @param mixed $data The data expected for the form. * @param string $group The name of the plugin group to import (defaults to "content"). * * @return void * * @see FormField * @since 1.6 * @throws Exception if there is an error in the form event. */ protected function preprocessForm(Form $form, $data, $group = 'content') { $form->addFieldPath(__DIR__ . '/forms/fields'); $form->addRulePath(__DIR__ . '/forms/rules'); $form->addFieldPath(JPATH_PLUGINS . '/system/nrframework/fields'); parent::preprocessForm($form, $data, $group); } /** * 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 Form object on success, false on failure * @since 2.5 */ public function getForm($data = array(), $loadData = true) { // Get the form. $form = $this->loadForm('com_gsd.config', 'config', 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() { return GSD\Helper::getParams(); } /** * Method to validate form data. */ public function validate($form, $data, $group = null) { $name = $data['name']; unset($data["name"]); return array( 'name' => $name, 'params' => json_encode($data) ); } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка