date.chapril.org-framadate/app/classes/Framadate/Message.php

38 lines
1.3 KiB
PHP
Raw Normal View History

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
* 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;
class Message {
2014-12-17 13:17:08 +01:00
var $type;
var $message;
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
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;
$this->link = $link;
2016-04-27 00:12:21 +02:00
$this->linkTitle = $linkTitle;
$this->linkIcon = $linkIcon;
$this->includeTemplate = $includeTemplate;
}
2014-12-17 13:17:08 +01:00
}