This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This function return a field value as a prepared string to be used in a SQL statement. | |
* | |
* @param array $columns Array of table's column returned by ::getTableColumns. | |
* @param string $field_name The table field's name. | |
* @param string $field_value The variable value to quote and return. | |
* | |
* @return string The quoted string. | |
* | |
* @since 11.3 |