phpBB

Code Changes

File: phpbb/textformatter/utils_interface.php

  Unmodified   Added   Modified   Removed
Line 15Line 15

/**
* Used to manipulate a parsed text


/**
* Used to manipulate a parsed text

 
*
* In this interface, "plain text" refers to regular text as it would be inputted by a user.
* "Parsed text" refers to whichever form is returned by the implementation after parsing, which
* should be suitable to be reinserted into the database.

*/
interface utils_interface
{

*/
interface utils_interface
{

Line 73Line 77
	 * Return whether or not a parsed text represent an empty text.
*
* @param string $text Parsed text

	 * Return whether or not a parsed text represent an empty text.
*
* @param string $text Parsed text

	 * @return bool         Tue if the original text is empty

	 * @return bool         True if the original text is empty

	 */
public function is_empty($text);
}

	 */
public function is_empty($text);
}