wCMF
3.6
Main Page
Related Pages
Modules
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Groups
Pages
modifier.clean_text.php
Go to the documentation of this file.
1
<?php
2
/**
3
* wCMF - wemove Content Management Framework
4
* Copyright (C) 2005-2014 wemove digital solutions GmbH
5
*
6
* Licensed under the terms of any of the following licenses
7
* at your choice:
8
*
9
* - GNU Lesser General Public License (LGPL)
10
* http://www.gnu.org/licenses/lgpl.html
11
* - Eclipse Public License (EPL)
12
* http://www.eclipse.org/org/documents/epl-v10.php
13
*
14
* See the license.txt file distributed with this work for
15
* additional information.
16
*
17
* $Id: modifier.utf8encode.php 929 2009-02-22 23:20:49Z iherwig $
18
*/
19
20
/*
21
* Smarty plugin
22
* -------------------------------------------------------------
23
* File: modifier.clean_text.php
24
* Type: function
25
* Name: clean_text
26
* Purpose: remove all html tags, and outer whitespace
27
* Usage: e.g. {$text|clean_text}
28
* -------------------------------------------------------------
29
*/
30
function
smarty_modifier_clean_text
($text)
31
{
32
$text = strip_tags($text);
33
$text = preg_replace(
'/ /'
,
''
, $text);
34
return
trim($text);
35
}
36
?>
37
smarty_modifier_clean_text
smarty_modifier_clean_text($text)
Definition:
modifier.clean_text.php:30
wcmf3.x
SVN
framework
wcmf
lib
presentation
smarty_plugins
modifier.clean_text.php
Generated on Wed Feb 5 2014 10:51:06 for wCMF by
1.8.6