Add @subpackage tags
This commit is contained in:
parent
a52aefb6ac
commit
c9f37be407
@ -18,7 +18,8 @@ require_once 'libraries/plugins/export/TableProperty.class.php';
|
||||
/**
|
||||
* Handles the export for the CodeGen class
|
||||
*
|
||||
* @package PhpMyAdmin-Export
|
||||
* @package PhpMyAdmin-Export
|
||||
* @subpackage CodeGen
|
||||
*/
|
||||
class ExportCodegen extends ExportPlugin
|
||||
{
|
||||
@ -242,7 +243,7 @@ class ExportCodegen extends ExportPlugin
|
||||
private function _handleNHibernateCSBody($db, $table, $crlf)
|
||||
{
|
||||
$lines = array();
|
||||
|
||||
|
||||
$result = PMA_DBI_query(
|
||||
sprintf(
|
||||
'DESC %s.%s', PMA_Util::backquote($db),
|
||||
|
||||
@ -17,7 +17,8 @@ require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
* Handles the export for the CSV format
|
||||
*
|
||||
* @todo add descriptions for all vars/methods
|
||||
* @package PhpMyAdmin-Export
|
||||
* @package PhpMyAdmin-Export
|
||||
* @subpackage CSV
|
||||
*/
|
||||
class ExportCsv extends ExportPlugin
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'libraries/plugins/export/ExportCsv.class.php';
|
||||
/**
|
||||
* Handles the export for the CSV-Excel format
|
||||
*
|
||||
* @package PhpMyAdmin-Export
|
||||
* @package PhpMyAdmin-Export
|
||||
* @subpackage CSV-Excel
|
||||
*/
|
||||
class ExportExcel extends ExportCsv
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
/**
|
||||
* Handles the export for the HTML-Word format
|
||||
*
|
||||
* @package PhpMyAdmin-Export
|
||||
* @package PhpMyAdmin-Export
|
||||
* @subpackage HTML-Word
|
||||
*/
|
||||
class ExportHtmlword extends ExportPlugin
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
/**
|
||||
* Handles the export for the JSON format
|
||||
*
|
||||
* @package PhpMyAdmin-Export
|
||||
* @package PhpMyAdmin-Export
|
||||
* @subpackage JSON
|
||||
*/
|
||||
class ExportJson extends ExportPlugin
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
/**
|
||||
* Handles the export for the Latex format
|
||||
*
|
||||
* @package PhpMyAdmin-Export
|
||||
* @package PhpMyAdmin-Export
|
||||
* @subpackage Latex
|
||||
*/
|
||||
class ExportLatex extends ExportPlugin
|
||||
{
|
||||
@ -441,7 +442,7 @@ class ExportLatex extends ExportPlugin
|
||||
$dates = false
|
||||
) {
|
||||
global $cfgRelation;
|
||||
|
||||
|
||||
/**
|
||||
* Get the unique keys in the table
|
||||
*/
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
/**
|
||||
* Handles the export for the MediaWiki class
|
||||
*
|
||||
* @package PhpMyAdmin-Export
|
||||
* @package PhpMyAdmin-Export
|
||||
* @subpackage MediaWiki
|
||||
*/
|
||||
class ExportMediawiki extends ExportPlugin
|
||||
{
|
||||
|
||||
@ -19,7 +19,8 @@ require_once 'libraries/opendocument.lib.php';
|
||||
/**
|
||||
* Handles the export for the ODS class
|
||||
*
|
||||
* @package PhpMyAdmin-Export
|
||||
* @package PhpMyAdmin-Export
|
||||
* @subpackage ODS
|
||||
*/
|
||||
class ExportOds extends ExportPlugin
|
||||
{
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
* Set of functions used to build OpenDocument Text dumps of tables
|
||||
*
|
||||
* @package PhpMyAdmin-Export
|
||||
* @subpackage ODS
|
||||
* @subpackage ODT
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
@ -19,7 +19,8 @@ require_once 'libraries/opendocument.lib.php';
|
||||
/**
|
||||
* Handles the export for the ODT class
|
||||
*
|
||||
* @package PhpMyAdmin-Export
|
||||
* @package PhpMyAdmin-Export
|
||||
* @subpackage ODT
|
||||
*/
|
||||
class ExportOdt extends ExportPlugin
|
||||
{
|
||||
|
||||
@ -18,7 +18,8 @@ require_once 'libraries/plugins/export/PMA_ExportPdf.class.php';
|
||||
/**
|
||||
* Handles the export for the PDF class
|
||||
*
|
||||
* @package PhpMyAdmin-Export
|
||||
* @package PhpMyAdmin-Export
|
||||
* @subpackage PDF
|
||||
*/
|
||||
class ExportPdf extends ExportPlugin
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
/**
|
||||
* Handles the export for the PHP Array class
|
||||
*
|
||||
* @package PhpMyAdmin-Export
|
||||
* @package PhpMyAdmin-Export
|
||||
* @subpackage PHP
|
||||
*/
|
||||
class ExportPhparray extends ExportPlugin
|
||||
{
|
||||
|
||||
@ -17,7 +17,8 @@ require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
* Handles the export for the SQL class
|
||||
*
|
||||
* @todo add descriptions for all vars/methods
|
||||
* @package PhpMyAdmin-Export
|
||||
* @package PhpMyAdmin-Export
|
||||
* @subpackage SQL
|
||||
*/
|
||||
class ExportSql extends ExportPlugin
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
/**
|
||||
* Handles the export for the Texy! text class
|
||||
*
|
||||
* @package PhpMyAdmin-Export
|
||||
* @package PhpMyAdmin-Export
|
||||
* @subpackage Texy!text
|
||||
*/
|
||||
class ExportTexytext extends ExportPlugin
|
||||
{
|
||||
|
||||
@ -19,7 +19,8 @@ require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
/**
|
||||
* Handles the export for the XML class
|
||||
*
|
||||
* @package PhpMyAdmin-Export
|
||||
* @package PhpMyAdmin-Export
|
||||
* @subpackage XML
|
||||
*/
|
||||
class ExportXml extends ExportPlugin
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
/**
|
||||
* Handles the export for the YAML format
|
||||
*
|
||||
* @package PhpMyAdmin-Export
|
||||
* @package PhpMyAdmin-Export
|
||||
* @subpackage YAML
|
||||
*/
|
||||
class ExportYaml extends ExportPlugin
|
||||
{
|
||||
|
||||
@ -17,7 +17,8 @@ require_once 'libraries/plugins/ImportPlugin.class.php';
|
||||
/**
|
||||
* Handles the import for the CSV format
|
||||
*
|
||||
* @package PhpMyAdmin-Import
|
||||
* @package PhpMyAdmin-Import
|
||||
* @subpackage CSV
|
||||
*/
|
||||
class ImportCsv extends ImportPlugin
|
||||
{
|
||||
|
||||
@ -22,7 +22,8 @@ if ($GLOBALS['plugin_param'] !== 'table') {
|
||||
/**
|
||||
* Handles the import for the CSV format using load data
|
||||
*
|
||||
* @package PhpMyAdmin-Import
|
||||
* @package PhpMyAdmin-Import
|
||||
* @subpackage LDI
|
||||
*/
|
||||
class ImportLdi extends ImportPlugin
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'libraries/plugins/ImportPlugin.class.php';
|
||||
/**
|
||||
* Handles the import for the MediaWiki format
|
||||
*
|
||||
* @package PhpMyAdmin-Import
|
||||
* @package PhpMyAdmin-Import
|
||||
* @subpackage MediaWiki
|
||||
*/
|
||||
class ImportMediawiki extends ImportPlugin
|
||||
{
|
||||
|
||||
@ -25,7 +25,8 @@ require_once 'libraries/plugins/ImportPlugin.class.php';
|
||||
/**
|
||||
* Handles the import for the ODS format
|
||||
*
|
||||
* @package PhpMyAdmin-Import
|
||||
* @package PhpMyAdmin-Import
|
||||
* @subpackage ODS
|
||||
*/
|
||||
class ImportOds extends ImportPlugin
|
||||
{
|
||||
|
||||
@ -25,7 +25,8 @@ require_once 'libraries/plugins/import/ShapeRecord.class.php';
|
||||
/**
|
||||
* Handles the import for ESRI Shape files
|
||||
*
|
||||
* @package PhpMyAdmin-Import
|
||||
* @package PhpMyAdmin-Import
|
||||
* @subpackage ESRI_Shape
|
||||
*/
|
||||
class ImportShp extends ImportPlugin
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'libraries/plugins/ImportPlugin.class.php';
|
||||
/**
|
||||
* Handles the import for the SQL format
|
||||
*
|
||||
* @package PhpMyAdmin-Import
|
||||
* @package PhpMyAdmin-Import
|
||||
* @subpackage SQL
|
||||
*/
|
||||
class ImportSql extends ImportPlugin
|
||||
{
|
||||
|
||||
@ -25,7 +25,8 @@ require_once 'libraries/plugins/ImportPlugin.class.php';
|
||||
/**
|
||||
* Handles the import for the XML format
|
||||
*
|
||||
* @package PhpMyAdmin-Import
|
||||
* @package PhpMyAdmin-Import
|
||||
* @subpackage XML
|
||||
*/
|
||||
class ImportXml extends ImportPlugin
|
||||
{
|
||||
|
||||
@ -15,7 +15,8 @@ require_once 'abstract/DownloadTransformationsPlugin.class.php';
|
||||
/**
|
||||
* Handles the download transformation for application octetstream
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
* @package PhpMyAdmin-Transformations
|
||||
* @subpackage Download
|
||||
*/
|
||||
class Application_Octetstream_Download extends DownloadTransformationsPlugin
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'abstract/HexTransformationsPlugin.class.php';
|
||||
/**
|
||||
* Handles the hex transformation for application octetstream
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
* @package PhpMyAdmin-Transformations
|
||||
* @subpackage Hex
|
||||
*/
|
||||
class Application_Octetstream_Hex extends HexTransformationsPlugin
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'abstract/InlineTransformationsPlugin.class.php';
|
||||
/**
|
||||
* Handles the inline transformation for image jpeg
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
* @package PhpMyAdmin-Transformations
|
||||
* @subpackage Inline
|
||||
*/
|
||||
class Image_JPEG_Inline extends InlineTransformationsPlugin
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'abstract/ImageLinkTransformationsPlugin.class.php';
|
||||
/**
|
||||
* Handles the link transformation for image jpeg
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
* @package PhpMyAdmin-Transformations
|
||||
* @subpackage Link
|
||||
*/
|
||||
class Image_JPEG_Link extends ImageLinkTransformationsPlugin
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'abstract/InlineTransformationsPlugin.class.php';
|
||||
/**
|
||||
* Handles the inline transformation for image png
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
* @package PhpMyAdmin-Transformations
|
||||
* @subpackage Inline
|
||||
*/
|
||||
class Image_PNG_Inline extends InlineTransformationsPlugin
|
||||
{
|
||||
|
||||
@ -17,7 +17,8 @@ require_once 'abstract/AppendTransformationsPlugin.class.php';
|
||||
* Handles the append transformation for text plain.
|
||||
* Has one option: the text to be appended (default '')
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
* @package PhpMyAdmin-Transformations
|
||||
* @subpackage Append
|
||||
*/
|
||||
class Text_Plain_Append extends AppendTransformationsPlugin
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'abstract/DateFormatTransformationsPlugin.class.php';
|
||||
/**
|
||||
* Handles the date format transformation for text plain
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
* @package PhpMyAdmin-Transformations
|
||||
* @subpackage DateFormat
|
||||
*/
|
||||
class Text_Plain_Dateformat extends DateFormatTransformationsPlugin
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'abstract/ExternalTransformationsPlugin.class.php';
|
||||
/**
|
||||
* Handles the external transformation for text plain
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
* @package PhpMyAdmin-Transformations
|
||||
* @subpackage External
|
||||
*/
|
||||
class Text_Plain_External extends ExternalTransformationsPlugin
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'abstract/FormattedTransformationsPlugin.class.php';
|
||||
/**
|
||||
* Handles the formatted transformation for text plain
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
* @package PhpMyAdmin-Transformations
|
||||
* @subpackage Formatted
|
||||
*/
|
||||
class Text_Plain_Formatted extends FormattedTransformationsPlugin
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'abstract/TextImageLinkTransformationsPlugin.class.php';
|
||||
/**
|
||||
* Handles the image link transformation for text plain
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
* @package PhpMyAdmin-Transformations
|
||||
* @subpackage ImageLink
|
||||
*/
|
||||
class Text_Plain_Imagelink extends TextImageLinkTransformationsPlugin
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'abstract/TextLinkTransformationsPlugin.class.php';
|
||||
/**
|
||||
* Handles the link transformation for text plain
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
* @package PhpMyAdmin-Transformations
|
||||
* @subpackage Link
|
||||
*/
|
||||
class Text_Plain_Link extends TextLinkTransformationsPlugin
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'abstract/LongToIPv4TransformationsPlugin.class.php';
|
||||
/**
|
||||
* Handles the long to ipv4 transformation for text plain
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
* @package PhpMyAdmin-Transformations
|
||||
* @subpackage LongToIPv4
|
||||
*/
|
||||
class Text_Plain_Longtoipv4 extends LongToIPv4TransformationsPlugin
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'abstract/SQLTransformationsPlugin.class.php';
|
||||
/**
|
||||
* Handles the sql transformation for text plain
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
* @package PhpMyAdmin-Transformations
|
||||
* @subpackage SQL
|
||||
*/
|
||||
class Text_Plain_Sql extends SQLTransformationsPlugin
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'abstract/SubstringTransformationsPlugin.class.php';
|
||||
/**
|
||||
* Handles the substring transformation for text plain
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
* @package PhpMyAdmin-Transformations
|
||||
* @subpackage Substring
|
||||
*/
|
||||
class Text_Plain_Substring extends SubstringTransformationsPlugin
|
||||
{
|
||||
|
||||
@ -16,7 +16,8 @@ require_once 'libraries/plugins/TransformationsPlugin.class.php';
|
||||
/**
|
||||
* Provides common methods for all of the append transformations plugins.
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
* @package PhpMyAdmin-Transformations
|
||||
* @subpackage Append
|
||||
*/
|
||||
abstract class AppendTransformationsPlugin extends TransformationsPlugin
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user