aboutsummaryrefslogtreecommitdiff
path: root/lib/models/CronjobLog.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/models/CronjobLog.class.php')
-rw-r--r--lib/models/CronjobLog.class.php70
1 files changed, 0 insertions, 70 deletions
diff --git a/lib/models/CronjobLog.class.php b/lib/models/CronjobLog.class.php
deleted file mode 100644
index c9e92f7..0000000
--- a/lib/models/CronjobLog.class.php
+++ /dev/null
@@ -1,70 +0,0 @@
-<?php
-// +---------------------------------------------------------------------------+
-// This file is part of Stud.IP
-// CronjobLog.class.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;
- }
-
-}