Display MIME types to transform any table cell. You can only choose from a list of pre-defined MIME-types. The list gets built by a function searching a directory for valid transforms. For further information see README-file and soon documentation. ;)
This commit is contained in:
23
libraries/transformations/template_generator.sh
Normal file
23
libraries/transformations/template_generator.sh
Normal file
@@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
# $Id$
|
||||
#
|
||||
# Shell script that adds a new mimetype with transform function.
|
||||
#
|
||||
# The filename should contain either 'mimetype_subtype' or 'mimetype'.
|
||||
# The suffix '.inc.php3' is appended automatically!
|
||||
#
|
||||
# The 'description' parameter will add a new entry in the language file. Watch out for
|
||||
# special escaping.
|
||||
#
|
||||
# Example: template_generator.sh 'filename' 'description'
|
||||
#
|
||||
if [ $# == 0 ]
|
||||
then
|
||||
echo "Usage: template_generator.sh 'filename' 'description'"
|
||||
echo ""
|
||||
exit 65
|
||||
fi
|
||||
|
||||
./generator.sh 'TEMPLATE' '$1'
|
||||
echo " "
|
||||
echo "New TRANSFORM FUNCTION $1.inc.php3 added."
|
Reference in New Issue
Block a user