lang
[phpmyadmin/crack.git] / libraries / transformations / TEMPLATE
blob4afdac04de73e26e414e42701c644439f5013f38
1 <?php
2 /* $Id$ */
3 // vim: expandtab sw=4 ts=4 sts=4:
5 /**
6  * Plugin function TEMPLATE (Garvin Hicking).
7  * -----------------------------------------
8  *
9  * For instructions, read the libraries/transformations/README file.
10  *
11  * The string ENTER_FILENAME_HERE shall be substituted with the filename without the '.inc.php3'
12  * extension. For further information regarding naming conventions see the README file.
13  */
15 if (!defined('PMA_TRANSFORMATION_[ENTER_FILENAME_HERE]')){
16     define('PMA_TRANSFORMATION_[ENTER_FILENAME_HERE]', 1);
17     
18     function PMA_transformation_[enter_filename_here]($buffer, $options = array()) {
19         // possibly use a global transform and feed it with special options:
20         // include('./libraries/transformations/global.inc.php3');
21         
22         // further operations on $buffer using the $options[] array.
23         
24         return $buffer;
25     }