first commit

This commit is contained in:
2026-04-24 15:32:21 +02:00
commit 20d40fead4
5046 changed files with 641038 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
/*
* Smarty plugin
* -------------------------------------------------------------
* File: function.url.php
* Type: function
* Name: link
* Purpose: zwraca datę o podanym formacie dla zadanego microtime
* -------------------------------------------------------------
*/
function smarty_function_mt2date($params, &$smarty){
$format = (isset($params['format'])?$params['format']:'d.m.Y G:i:s');
return (isset($params['time'])?date($format,$params['time']):null);
}
?>