blob: b6e92795b4a57f75401af59e578188aaabde5356 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
namespace Bitweaver\Plugins;
/**
* Smarty plugin
* @package Smarty
* @subpackage plugins
*/
/**
* smarty_function_cookie
*/
function smarty_function_cookie($params, &$gBitSmarty) {
global $taglinelib;
include_once TIDBITS_PKG_PATH.'BitFortuneCookies.php';
print( $taglinelib->pick_cookie() );
}
|