23 lines
623 B
PHP
23 lines
623 B
PHP
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
/**
|
|
* PTA System Messages.
|
|
*
|
|
* @package PTA
|
|
* @subpackage TSM
|
|
* @category Helpers
|
|
* @author Deon George
|
|
* @copyright (c) 2010 phpTSMadmin Development Team
|
|
* @license http://phptsmadmin.sf.net/license.html
|
|
*/
|
|
class SystemMessage extends lnApp_SystemMessage {
|
|
static public function TSM($type,$error,$sql=NULL) {
|
|
SystemMessage::add(array(
|
|
'title'=>_('While talking to TSM'),
|
|
'body'=>($sql ? _('Running SQL').': <b>'.$sql.'</b><br/><br/>' : '').(is_array($error) ? implode('<br/>',$error) : $error),
|
|
'type'=>$type,
|
|
));
|
|
}
|
|
}
|
|
?>
|