Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauriciofauth@gmail.com>2017-07-20 17:50:12 +0300
committerMaurício Meneghini Fauth <mauriciofauth@gmail.com>2017-07-20 17:50:12 +0300
commit2631bcedbaeede80db7ad2828ce06189970a4147 (patch)
tree4bbec5b8632153c4003b03f7592df0ec42aeb3d4 /doc/transformations.rst
parent67753d579cfa225d0c0abbb26dfe3355ac81da3d (diff)
Move plugins classes to PhpMyAdmin namespace
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'doc/transformations.rst')
-rw-r--r--doc/transformations.rst11
1 files changed, 5 insertions, 6 deletions
diff --git a/doc/transformations.rst b/doc/transformations.rst
index be60b33c80..f04f80c455 100644
--- a/doc/transformations.rst
+++ b/doc/transformations.rst
@@ -3,7 +3,7 @@
Transformations
===============
-.. note::
+.. note::
You need to have configured the :ref:`linked-tables` for using transformations
feature.
@@ -87,9 +87,9 @@ File structure
++++++++++++++
All specific transformations for mimetypes are defined through class
-files in the directory 'libraries/plugins/transformations/'. Each of
+files in the directory 'libraries/classes/Plugins/Transformations/'. Each of
them extends a certain transformation abstract class declared in
-libraries/plugins/transformations/abstract.
+libraries/classes/Plugins/Transformations/Abs.
They are stored in files to ease up customization and easy adding of
new transformations.
@@ -117,8 +117,8 @@ getInfo() returns the transformation's description and possible
options it may receive and applyTransformation() is the method that
does the actual work of the transformation plug-in.
-Please see the libraries/plugins/transformations/TEMPLATE and
-libraries/plugins/transformations/TEMPLATE\_ABSTRACT files for adding
+Please see the libraries/classes/Plugins/Transformations/TEMPLATE and
+libraries/classes/Plugins/Transformations/TEMPLATE\_ABSTRACT files for adding
your own transformation plug-in. You can also generate a new
transformation plug-in (with or without the abstract transformation
class), by using
@@ -140,4 +140,3 @@ The applyTransformation() method always gets passed three variables:
unsigned/zerofill/not\_null/... properties. The $meta->mimetype
variable contains the original MIME-type of the column (i.e.
'text/plain', 'image/jpeg' etc.)
-