blob: 40f20659095cb12484dadb10ffd174cf11bf7f04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
/**
* Smarty plugin
* @package Smarty
* @subpackage plugins
*/
/**
* required setup
*/
global $gBitSmarty;
$gBitSmarty->loadPlugin( 'smarty_modifier_bit_date_format' );
/**
* smarty_modifier_bit_long_date
*/
function smarty_modifier_bit_long_date( $pString ) {
global $gBitSystem;
return smarty_modifier_bit_date_format( $pString, $gBitSystem->get_long_date_format(), '%A %d of %B, %Y' );
}
?>
|