__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php /** * CustomTables Joomla! 3.x/4.x/5.x Component * @package Custom Tables * @author Ivan Komlev <[email protected]> * @link https://joomlaboat.com * @copyright (C) 2018-2024. Ivan Komlev * @license GNU/GPL Version 2 or later - https://www.gnu.org/licenses/gpl-2.0.html **/ // no direct access defined('_JEXEC') or die(); use CustomTables\common; $path = JPATH_SITE . DIRECTORY_SEPARATOR . 'components' . DIRECTORY_SEPARATOR . 'com_customtables' . DIRECTORY_SEPARATOR . 'libraries' . DIRECTORY_SEPARATOR . 'customtables' . DIRECTORY_SEPARATOR . 'loader.php'; if (!file_exists($path)) die('CT Loader not found.'); require_once($path); CustomTablesLoader(false, $include_html = true); // Require the base controller require_once JPATH_SITE . DIRECTORY_SEPARATOR . 'components' . DIRECTORY_SEPARATOR . 'com_customtables' . DIRECTORY_SEPARATOR . 'controller.php'; // Initialize the controller $controller = new CustomTablesController(); try { $controller->execute(null); } catch (Exception $e) { } // Redirect if set by the controller $view = common::inputGetCmd('view'); if ($view == 'xml') { $file = common::inputGetCmd('xmlfile'); $xml = 'unknown file'; if ($file == 'tags') $xml = common::getStringFromFile(CUSTOMTABLES_LIBRARIES_PATH . DIRECTORY_SEPARATOR . 'customtables' . DIRECTORY_SEPARATOR . 'media' . DIRECTORY_SEPARATOR . 'xml' . DIRECTORY_SEPARATOR . $file . '.xml'); elseif ($file == 'fieldtypes') $xml = common::getStringFromFile(CUSTOMTABLES_LIBRARIES_PATH . DIRECTORY_SEPARATOR . 'customtables' . DIRECTORY_SEPARATOR . 'media' . DIRECTORY_SEPARATOR . 'xml' . DIRECTORY_SEPARATOR . $file . '.xml'); echo $xml; die;//XML output } $controller->redirect();
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| controllers | Folder | 0775 |
|
|
| customphp | Folder | 0775 |
|
|
| fields | Folder | 0775 |
|
|
| libraries | Folder | 0775 |
|
|
| models | Folder | 0775 |
|
|
| views | Folder | 0775 |
|
|
| controller.php | File | 1.88 KB | 0664 |
|
| customtables.php | File | 1.73 KB | 0664 |
|
| index.html | File | 43 B | 0664 |
|
| router.php | File | 1.55 KB | 0664 |
|