__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php /** * @package Regular Labs Extension Manager * @version 9.1.0 * * @author Peter van Westen <[email protected]> * @link https://regularlabs.com * @copyright Copyright © 2025 Regular Labs All Rights Reserved * @license GNU General Public License version 2 or later */ namespace RegularLabs\Component\RegularLabsExtensionsManager\Administrator\Model; use Joomla\CMS\Factory as JFactory; use Joomla\CMS\MVC\Model\ListModel; use RegularLabs\Component\RegularLabsExtensionsManager\Administrator\Helper\ExtensionsHelper; use RegularLabs\Library\Input as RL_Input; use RegularLabs\Library\Parameters as RL_Parameters; defined('_JEXEC') or die; class MainModel extends ListModel { protected $config; /** * @var string The prefix to use with controller messages. */ protected $text_prefix = 'RL'; /** * Constructor. * * @param array An optional associative array of configuration settings. * * @see JController */ public function __construct($config = []) { parent::__construct($config); $is_modal = RL_Input::getString('layout') === 'modal'; if ($is_modal) { $this->context .= '_modal'; } $this->config = RL_Parameters::getComponent('regularlabsmanager'); } public function getItems($refresh = false) { return ExtensionsHelper::get(); } }
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| DiscoverModel.php | File | 1.39 KB | 0664 |
|
| MainModel.php | File | 1.44 KB | 0664 |
|
| ProcessModel.php | File | 9.15 KB | 0664 |
|