| [ Index ] |
krapohl.info |
[Summary view] [Print] [Text view]
1 <?php 2 3 /* 4 * Smarty plugin 5 * ------------------------------------------------------------- 6 * Type: modifier 7 * Name: default 8 * Purpose: designate default value for empty variables 9 * ------------------------------------------------------------- 10 */ 11 function smarty_modifier_default($string, $default = '') 12 { 13 if (!isset($string) || $string == '') 14 return $default; 15 else 16 return $string; 17 } 18 19 /* vim: set expandtab: */ 20 21 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Wed Feb 16 22:40:07 2005 | Cross-referenced by PHPXref 0.6 |