2014-12-17 13:17:08 +01:00
|
|
|
<?php
|
2014-12-17 13:48:03 +01:00
|
|
|
/**
|
|
|
|
* This software is governed by the CeCILL-B license. If a copy of this license
|
|
|
|
* is not distributed with this file, you can obtain one at
|
|
|
|
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt
|
|
|
|
*
|
|
|
|
* Authors of STUdS (initial project): Guilhem BORGHESI (borghesi@unistra.fr) and Raphaël DROZ
|
2016-08-04 22:26:37 +02:00
|
|
|
* Authors of Framadate/OpenSondage: Framasoft (https://github.com/framasoft)
|
2014-12-17 13:48:03 +01:00
|
|
|
*
|
|
|
|
* =============================
|
|
|
|
*
|
|
|
|
* Ce logiciel est régi par la licence CeCILL-B. Si une copie de cette licence
|
|
|
|
* ne se trouve pas avec ce fichier vous pouvez l'obtenir sur
|
|
|
|
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.txt
|
|
|
|
*
|
|
|
|
* Auteurs de STUdS (projet initial) : Guilhem BORGHESI (borghesi@unistra.fr) et Raphaël DROZ
|
|
|
|
* Auteurs de Framadate/OpenSondage : Framasoft (https://github.com/framasoft)
|
|
|
|
*/
|
2014-12-17 13:17:08 +01:00
|
|
|
namespace Framadate;
|
|
|
|
|
2018-02-19 00:18:43 +01:00
|
|
|
class Message {
|
2014-12-17 13:17:08 +01:00
|
|
|
var $type;
|
|
|
|
var $message;
|
2015-04-05 17:44:29 +02:00
|
|
|
var $link;
|
2016-04-27 00:12:21 +02:00
|
|
|
var $linkTitle;
|
|
|
|
var $linkIcon;
|
2016-04-29 18:46:02 +02:00
|
|
|
var $includeTemplate;
|
2014-12-17 13:17:08 +01:00
|
|
|
|
2018-02-19 00:18:43 +01:00
|
|
|
function __construct($type, $message, $link=null, $linkTitle=null, $linkIcon=null, $includeTemplate=null) {
|
2014-12-17 13:17:08 +01:00
|
|
|
$this->type = $type;
|
|
|
|
$this->message = $message;
|
2015-04-05 17:44:29 +02:00
|
|
|
$this->link = $link;
|
2016-04-27 00:12:21 +02:00
|
|
|
$this->linkTitle = $linkTitle;
|
|
|
|
$this->linkIcon = $linkIcon;
|
2018-02-19 00:18:43 +01:00
|
|
|
$this->includeTemplate = $includeTemplate;
|
|
|
|
}
|
2014-12-17 13:17:08 +01:00
|
|
|
}
|
|
|
|
|