diff options
author | emkael <emkael@tlen.pl> | 2016-10-11 14:01:29 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-10-11 14:01:29 +0200 |
commit | 51609351f2c4b5082b7e6f0744cd3811c325303f (patch) | |
tree | 739015e9ec69bc185ebe30db21369ae0b8b692ce /lib/smarty-plugins/block.vertical.php | |
parent | 8d1b0dad63e3906efa9393ef01d08b77d83417b5 (diff) |
* initial template
Diffstat (limited to 'lib/smarty-plugins/block.vertical.php')
-rw-r--r-- | lib/smarty-plugins/block.vertical.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/smarty-plugins/block.vertical.php b/lib/smarty-plugins/block.vertical.php new file mode 100644 index 0000000..f0c0c13 --- /dev/null +++ b/lib/smarty-plugins/block.vertical.php @@ -0,0 +1,16 @@ +<?php + +function smarty_block_vertical($params, $text, &$smarty) { + + if (isset($params['strip'])) { + $text = strip_tags($text); + } + + $array = array(); + preg_match_all('/<.*>|[^\.]\.*/', $text, $array); + + return join('<br />', $array[0]); + +} + +?>
\ No newline at end of file |