blob: c86503ba1e5b190348c276c70216edd5f5f2bcfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php
namespace Bitweaver\Plugins;
/**
* Smarty plugin
* @package Smarty
* @subpackage plugins
*/
/**
* required setup
*/
global $gBitSmarty;
// $gBitSmarty->loadPlugin( 'smarty_modifier_bit_date_format' );
/**
* smarty_modifier_bit_short_datetime
*/
function smarty_modifier_bit_short_datetime( $pString, $time='' ) {
global $gBitSystem;
if( !empty( $time ) && date( 'Ymd' ) == date( 'Ymd', $pString )) {
return \Bitweaver\Plugins\smarty_modifier_bit_date_format( $pString, $gBitSystem->get_short_time_format(), '%H:%M %Z' );
}
return \Bitweaver\Plugins\smarty_modifier_bit_date_format( $pString, $gBitSystem->get_short_datetime_format(), '%d %b %Y (%H:%M %Z)' );
}
|