Configure the Linkbar.
	
	
	
		static void
		
			addSubmenu
		
					(string $vName)
			
	
			
					- 
				string
				$vName: The name of the active view.			
 
				
		
			
	 
	
	 
	
	
Checks an object for search terms (after stripping fields of HTML)
	
	
	
		static boolean
		
			checkNoHtml
		
					(object $object, string $searchTerm, array $fields)
			
	
			
					- 
				object
				$object: The object to check			
 
					- 
				string
				$searchTerm: Search words to check for			
 
					- 
				array
				$fields: List of object variables to check against			
 
				
		
			
	 
	
	 
	
	
Gets a list of the actions that can be performed.
	
	
	
	
		
			
	 
	
	 
	
	
	
	
	
		static void
		
			limitSearchWord
		
					( &$searchword)
			
	
			
		
			
	 
	
	 
	
	
Logs a search term
	
	
	
		static void
		
			logSearch
		
					(string $search_term)
			
	
			
					- 
				string
				$search_term: The term being searched			
 
				
		
			
	 
	
	 
	
	
Prepares results from search for display
	
	
	
		static string
		
			prepareSearchContent
		
					(string $text, string $searchword)
			
	
			
					- 
				string
				$text: The source string			
 
					- 
				string
				$searchword: The searchword to select around			
 
				
		
			
	 
	
	 
	
	
Transliterates given text to ASCII//TRANSLIT.
Simulates glibc transliteration style even if libiconv is used by PHP
	
	
	
		static string
		
			remove_accents
		
					(string $str)
			
	
			
					- 
				string
				$str: String to remove accents from			
 
				
		
			
	 
	
	 
	
	
	
	
	
		static void
		
			santiseSearchWord
		
					( &$searchword,  $searchphrase)
			
	
			
					- 
				
				&$searchword			
 
					- 
				
				$searchphrase			
 
				
		
			
	 
	
	 
	
	
returns substring of characters around a searchword
	
	
	
		static string
		
			_smartSubstr
		
					(string $text, integer $searchword)
			
	
			
					- 
				string
				$text: The source string			
 
					- 
				integer
				$searchword: Number of chars to return