Sha256: 2c3fa2bb635530eafa1444b401de0d1d23accbc05fdf5ab800d28a997e570d8b

Contents?: true

Size: 605 Bytes

Versions: 2

Compression:

Stored size: 605 Bytes

Contents

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Set of functions related to db printview 
 *
 * @package PhpMyAdmin
 */
if (! defined('PHPMYADMIN')) {
    exit;
}

/**
 * Function to get html for one of the db dates
 *
 * @param string $title the title 
 * @param string $date  which date to display
 *
 * @return string html content
 */
function PMA_getHtmlForOneDate($title, $date)
{
    $html = '<tr>'
        . '<td class="right">' . $title . '</td>'
        . '<td class="right">'
        . PMA_Util::localisedDate(strtotime($date))
        . '</td>'
        . '</tr>';
    return $html;
}
?>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
simpletool-0.0.3 lib/support/phpmyadmin/phpmyadmin/libraries/db_printview.lib.php
simpletool-0.0.2 lib/support/phpmyadmin/phpmyadmin/libraries/db_printview.lib.php