Upgraded phpmyadmin to 4.0.4 (All Languages) - No modifications yet
[openemr.git] / phpmyadmin / libraries / plugins / transformations / generator_main_class.sh
blob05876671ac58b1fceb828ec03df80c5b940c2744
1 #!/bin/bash
3 # Shell script that creates only the main class for a new transformation
4 # plug-in, using a template
6 # $1: MIMEType
7 # $2: MIMESubtype
8 # $3: Transformation Name
10 if [ $# != 3 ]
11 then
12 echo -e "Usage: ./generator_main_class.sh MIMEType MIMESubtype TransformationName\n"
13 exit 65
16 ./generator_plugin.sh "$1" "$2" "$3" "--generate_only_main_class"