Internationalization
Internationalization is supported through miI18N class. The class has only two methods.
<?php
$message = miI18N::htmlEscape('<html>');
print($message); // Will output: <html>
?>
<?php
$message = miI18N::getSystemMessage('MI_RECORD_CREATED_SUCCESSFULLY_MSG');
print($message); // Will output: Record [ %u ] created successfully
?>