This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
phptsmadmin/application/classes/SystemMessage.php

23 lines
623 B
PHP
Raw Normal View History

2011-01-17 05:33:55 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
2011-03-03 23:06:18 +00:00
/**
* 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 {
2012-11-26 05:57:18 +00:00
static public function TSM($type,$error,$sql=NULL) {
2011-03-03 23:06:18 +00:00
SystemMessage::add(array(
2012-11-26 05:57:18 +00:00
'title'=>_('While talking to TSM'),
'body'=>($sql ? _('Running SQL').': <b>'.$sql.'</b><br/><br/>' : '').(is_array($error) ? implode('<br/>',$error) : $error),
'type'=>$type,
2011-03-03 23:06:18 +00:00
));
}
}
2011-01-17 05:33:55 +00:00
?>