Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
phpmyadmin /
libraries /
plugins /
schema /
Delete
Unzip
Name
Size
Permission
Date
Action
dia
[ DIR ]
drwxrwxrwx
2022-03-20 10:35
eps
[ DIR ]
drwxrwxrwx
2022-03-20 10:35
pdf
[ DIR ]
drwxrwxrwx
2022-03-20 10:35
svg
[ DIR ]
drwxrwxrwx
2022-03-20 10:35
ExportRelationSchema.php
6.61
KB
-rw-r--r--
2017-01-23 20:20
RelationStats.php
3.1
KB
-rw-r--r--
2017-01-23 20:20
SchemaDia.php
2.69
KB
-rw-r--r--
2017-01-23 20:20
SchemaEps.php
2.78
KB
-rw-r--r--
2017-01-23 20:20
SchemaPdf.php
3.65
KB
-rw-r--r--
2017-01-23 20:20
SchemaSvg.php
2.42
KB
-rw-r--r--
2017-01-23 20:20
TableStats.php
4.83
KB
-rw-r--r--
2017-01-23 20:20
Save
Rename
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * PDF schema export code * * @package PhpMyAdmin-Schema * @subpackage EPS */ namespace PMA\libraries\plugins\schema; use PMA\libraries\properties\options\items\BoolPropertyItem; use PMA\libraries\properties\options\groups\OptionsPropertyMainGroup; use PMA\libraries\properties\options\groups\OptionsPropertyRootGroup; use PMA\libraries\plugins\schema\eps\EpsRelationSchema; use PMA\libraries\plugins\SchemaPlugin; use PMA\libraries\properties\plugins\SchemaPluginProperties; use PMA\libraries\properties\options\items\SelectPropertyItem; /** * Handles the schema export for the EPS format * * @package PhpMyAdmin-Schema * @subpackage EPS */ class SchemaEps extends SchemaPlugin { /** * Constructor */ public function __construct() { $this->setProperties(); } /** * Sets the schema export EPS properties * * @return void */ protected function setProperties() { $schemaPluginProperties = new SchemaPluginProperties(); $schemaPluginProperties->setText('EPS'); $schemaPluginProperties->setExtension('eps'); $schemaPluginProperties->setMimeType('application/eps'); // create the root group that will be the options field for // $schemaPluginProperties // this will be shown as "Format specific options" $exportSpecificOptions = new OptionsPropertyRootGroup( "Format Specific Options" ); // specific options main group $specificOptions = new OptionsPropertyMainGroup("general_opts"); // add options common to all plugins $this->addCommonOptions($specificOptions); // create leaf items and add them to the group $leaf = new BoolPropertyItem( 'all_tables_same_width', __('Same width for all tables') ); $specificOptions->addProperty($leaf); $leaf = new SelectPropertyItem( "orientation", __('Orientation') ); $leaf->setValues( array( 'L' => __('Landscape'), 'P' => __('Portrait'), ) ); $specificOptions->addProperty($leaf); // add the main group to the root group $exportSpecificOptions->addProperty($specificOptions); // set the options for the schema export plugin property item $schemaPluginProperties->setOptions($exportSpecificOptions); $this->properties = $schemaPluginProperties; } /** * Exports the schema into EPS format. * * @param string $db database name * * @return bool Whether it succeeded */ public function exportSchema($db) { $export = new EpsRelationSchema($db); $export->showOutput(); } }