Conditional Ajax for DROP DATABASE
[phpmyadmin/crack.git] / libraries / transformations / text_plain__link.inc.php
blob6a1ca6c3c988cfbc5b0b95d6c13d7917b4ad8988
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * @package phpMyAdmin-Transformation
5 */
7 function PMA_transformation_text_plain__link_info() {
8 return array(
9 'info' => __('Displays a link; the column contains the filename. The first option is a URL prefix like "http://www.example.com/". The second option is a title for the link.'),
13 /**
16 function PMA_transformation_text_plain__link($buffer, $options = array(), $meta = '') {
17 require_once './libraries/transformations/global.inc.php';
19 // $transform_options = array ('string' => '<a href="' . (isset($options[0]) ? $options[0] : '') . '%1$s" title="' . (isset($options[1]) ? $options[1] : '%1$s') . '">' . (isset($options[1]) ? $options[1] : '%1$s') . '</a>');
21 $transform_options = array ('string' => '<a href="' . PMA_linkURL((isset($options[0]) ? $options[0] : '') . $buffer) . '" title="' . (isset($options[1]) ? $options[1] : '') . '">' . (isset($options[1]) ? $options[1] : $buffer) . '</a>');
23 $buffer = PMA_transformation_global_html_replace($buffer, $transform_options);
25 return $buffer;