152. return Html::anchor( $url, $text, $options );
153. }
154.
155. /**
156. * @param $text
157. * @param $needle
158. */
159. function text_ends_with( $text, $needle )
160. {
161. return substr_compare( $text, $needle, -mb_strlen( $needle ), mb_strlen( $needle ) ) === 0;
162. }
163.
164. /**
165. * @param $file_path
166. */
167. function unlink_if_exists( $file_path )
168. {
169. if ( file_exists( $file_path ) )
170. {
171. unlink( $file_path );