aboutsummaryrefslogtreecommitdiff
path: root/lib/models/HelpTourStep.class.php
blob: 82d85245628a1e2a17d0ba9a474408568859bfbd (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
71
72
73
74
75
76
77
78
79
80
<?php
// +---------------------------------------------------------------------------+
// This file is part of Stud.IP
//
// Copyright (C) 2014 Arne Schröder <schroeder@data-quest>,
// Suchi & Berg GmbH <info@data-quest.de>
// +---------------------------------------------------------------------------+
// 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.
// +---------------------------------------------------------------------------+
/**
 * HelpTourSteps.class.php - model class for tour steps
 *
 * 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 (at your option) any later version.
 *
 * @author      Arne Schröder <schroeder@data-quest>
 * @license     http://www.gnu.org/licenses/gpl-2.0.html GPL version 2
 * @category    Stud.IP
 *
 * @property string tour_id database column
 * @property string step database column
 * @property string title database column
 * @property string tip database column
 * @property string orientation database column
 * @property string interactive database column
 * @property string css_selector database column
 * @property string route database column
 * @property string author_email database column
 * @property string mkdate database column
 * @property string chdate database column
 * @property string id computed column read/write
 * @property HelpTours help_tour belongs_to HelpTours
 */
class HelpTourStep extends SimpleORMap
{
    protected static function configure($config = [])
    {
        $config['db_table'] = 'help_tour_steps';
        $config['belongs_to']['help_tour'] = [
            'class_name'  => 'HelpTour',
            'foreign_key' => 'tour_id',
        ];

        parent::configure($config);
    }

    /**
     * checks, if tour step data is complete
     *
     * @todo Das Model sollte nix über PageLayout wissen, das sollte anders raus transportiert werden
     * @return boolean true or false
     */
    public function validate() {
        if (!$this->orientation)
            $this->orientation = 'B';
        if (!$this->title && !$this->tip) {
            PageLayout::postMessage(MessageBox::error(_('Der Schritt muss einen Titel oder Inhalt besitzen.')));
            return false;
        }
        if (!$this->route) {
            PageLayout::postMessage(MessageBox::error(_('Ungültige oder fehlende Angabe zur Seite, für die der Schritt angezeigt werden soll.')));
            return false;
        }
        return true;
    }
}