/** * Works like the one above but it simply removes *all* html code * from a string * * @param string The string we would like to filter * @return The filtered text. * @static */ function filterAllHTML( $string ) { $tmp = strip_tags( $string ); // y luego eliminamos el javascript $filteredString = Textfilter::filterJavaScript( $tmp ); return $filteredString; }