PHP 8.1.33
Preview: ConfigModel.php Size: 957 B
/home/jambtst2015/public_html/ida.com.ng/components/com_config/src/Model/ConfigModel.php

<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_config
 *
 * @copyright   (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

namespace Joomla\Component\Config\Site\Model;

\defined('_JEXEC') or die;

/**
 * Model for the global configuration
 *
 * @since  3.2
 */
class ConfigModel extends FormModel
{
	/**
	 * Method to get a form object.
	 *
	 * @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	3.2
	 */
	public function getForm($data = array(), $loadData = true)
	{
		// Get the form.
		$form = $this->loadForm('com_config.config', 'config', array('control' => 'jform', 'load_data' => $loadData));

		if (empty($form))
		{
			return false;
		}

		return $form;
	}
}

Directory Contents

Dirs: 0 × Files: 4

Name Size Perms Modified Actions
957 B lrw-r--r-- 2024-11-22 17:53:15
Edit Download
7.11 KB lrw-r--r-- 2024-11-22 17:53:15
Edit Download
6.48 KB lrw-r--r-- 2024-11-22 17:53:15
Edit Download
3.05 KB lrw-r--r-- 2024-11-22 17:53:15
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).