summaryrefslogtreecommitdiffstats
path: root/app/lib/lib.String.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/lib/lib.String.php')
-rw-r--r--app/lib/lib.String.php134
1 files changed, 0 insertions, 134 deletions
diff --git a/app/lib/lib.String.php b/app/lib/lib.String.php
deleted file mode 100644
index 151d122..0000000
--- a/app/lib/lib.String.php
+++ /dev/null
@@ -1,134 +0,0 @@
-<?php
-/*
-* Smarty plugin
-*
--------------------------------------------------------------
-* File: modifier.html_substr.php
-* Type: modifier
-* Name: html_substr
-* Version: 1.0
-* Date: June 19th, 2003
-* Purpose: Cut a string preserving any tag nesting and matching.
-* Install: Drop into the plugin directory.
-* Author: Original Javascript Code: Benjamin Lupu <lupufr@aol.com>
-* Translation to PHP & Smarty: Edward Dale <scompt@scompt.com>
-* Modification to add a string: Sebastian Kuhlmann <sebastiankuhlmann@web.de>
-*
--------------------------------------------------------------
-*/
-function smarty_modifier_html_substr($string, $length, $addstring="")
-{
- $addstring = " " . $addstring;
-
- if (strlen($string) > $length) {
- if( !empty( $string ) && $length>0 ) {
- $addtext = false;
- $isText = true;
- $ret = "";
- $i = 0;
-
- $currentChar = "";
- $lastSpacePosition = -1;
- $lastChar = "";
-
- $tagsArray = array();
- $currentTag = "";
- $tagLevel = 0;
-
- $noTagLength = strlen( strip_tags( $string ) );
-
- // Parser loop
- for( $j=0; $j<strlen( $string ); $j++ ) {
-
- $currentChar = substr( $string, $j, 1 );
- $ret .= $currentChar;
-
- // Lesser than event
- if( $currentChar == "<") $isText = false;
-
- // Character handler
- if( $isText ) {
-
- // Memorize last space position
- if( $currentChar == " " ) { $lastSpacePosition = $j; }
- else { $lastChar = $currentChar; }
-
- $i++;
- } else {
- $currentTag .= $currentChar;
- }
-
- // Greater than event
- if( $currentChar == ">" ) {
- $isText = true;
-
- // Opening tag handler
- if( ( strpos( $currentTag, "<" ) !== FALSE ) &&
- ( strpos( $currentTag, "/>" ) === FALSE ) &&
- ( strpos( $currentTag, "</") === FALSE ) ) {
-
- // Tag has attribute(s)
- if( strpos( $currentTag, " " ) !== FALSE ) {
- $currentTag = substr( $currentTag, 1, strpos( $currentTag, " " ) - 1 );
- } else {
- // Tag doesn't have attribute(s)
- $currentTag = substr( $currentTag, 1, -1 );
- }
-
- array_push( $tagsArray, $currentTag );
-
- } else if( strpos( $currentTag, "</" ) !== FALSE ) {
- array_pop( $tagsArray );
- }
-
- $currentTag = "";
- }
-
- if( $i >= $length) {
- $addtext = true;
- break;
- }
- }
-
- // Cut HTML string at last space position
- if( $length < $noTagLength ) {
- if( $lastSpacePosition != -1 ) {
- $ret = substr( $string, 0, $lastSpacePosition );
- } else {
- $ret = substr( $string, 0, $j );
- }
- }
-
- // Close broken XHTML elements
- while( sizeof( $tagsArray ) != 0 ) {
- $aTag = array_pop( $tagsArray );
- $ret .= "</" . $aTag . ">\n";
- }
-
- } else {
- $ret = "";
- }
-
- // only add string if text was cut
- if ( $addtext ) {
- return( $ret.$addstring );
- }
- else {
- return ( $ret );
- }
- } else {
- return ( $string );
- }
-}
-
-//truncate a string
-function string_truncate($string, $length){
- if (strlen($string) < $length){
- return $string;
- }
- else{
- return substr($string, 0, $length)."&hellip;";
- }
-}
-
-?> \ No newline at end of file