blob: 278a515dc8eb9ca35a29753a5439f43f8872cab0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
<?php
// +---------------------------------------------------------------------------+
// This file is part of Stud.IP
// CronjobLog.php
//
// Copyright (C) 2013 Jan-Hendrik Willms <tleilax+studip@gmail.com>
// +---------------------------------------------------------------------------+
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or any later version.
// +---------------------------------------------------------------------------+
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
// +---------------------------------------------------------------------------+
/**
* CronjobLog - Model for the database table "cronjobs_logs"
*
* @author Jan-Hendrik Willms <tleilax+studip@gmail.com>
* @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2
* @category Stud.IP
* @since 2.4
*
* @property string $id alias column for log_id
* @property string $log_id database column
* @property string $schedule_id database column
* @property int $scheduled database column
* @property int $executed database column
* @property string|null $exception database column
* @property string|null $output database column
* @property float $duration database column
* @property CronjobSchedule $schedule belongs_to CronjobSchedule
*/
class CronjobLog extends SimpleORMap
{
protected static function configure($config = [])
{
$config['db_table'] = 'cronjobs_logs';
$config['belongs_to']['schedule'] = [
'class_name' => CronjobSchedule::class,
'foreign_key' => 'schedule_id',
];
parent::configure($config);
}
public function setException($exception_or_string)
{
if ($exception_or_string instanceof Exception) {
$exception_as_string = display_exception($exception_or_string, false, true);
return $this->content['exception'] = $exception_as_string;
}
if (is_string($exception_or_string)) {
return $this->content['exception'] = $exception_or_string;
}
return $this->content['exception'] = null;
}
}
|