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:
16
libraries/transformations/image_jpeg__inline.inc.php3
Normal file
16
libraries/transformations/image_jpeg__inline.inc.php3
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
// vim: expandtab sw=4 ts=4 sts=4:
|
||||
|
||||
if (!defined('PMA_TRANSFORMATION_IMAGE_JPEG__INLINE')){
|
||||
define('PMA_TRANSFORMATION_IMAGE_JPEG__INLINE', 1);
|
||||
|
||||
function PMA_transformation_image_jpeg__inline($buffer, $options = array()) {
|
||||
include('./libraries/transformations/global.inc.php3');
|
||||
|
||||
$transform_options = array ('string' => '<img src="transformation_wrapper.php3' . $options['wrapper_link'] . '" alt="[__BUFFER__]" width="320" height="240">');
|
||||
$buffer = PMA_transformation_global_html_replace($buffer, $transform_options);
|
||||
|
||||
return $buffer;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user