addRaw() публичный статический Метод

Add a preformatted message
public static addRaw ( string $strMessage, string $strScope = TL_MODE )
$strMessage string The preformatted message
$strScope string An optional message scope
Пример #1
0
 /**
  * Add an unformatted message
  *
  * @param string $strMessage The unformatted message
  *
  * @deprecated Deprecated since Contao 4.0, to be removed in Contao 5.0.
  *             Use Message::addRaw() instead.
  */
 protected function addRawMessage($strMessage)
 {
     @trigger_error('Using System::addRawMessage() has been deprecated and will no longer work in Contao 5.0. Use Message::addRaw() instead.', E_USER_DEPRECATED);
     \Message::addRaw($strMessage);
 }