Fix white spaces
This commit is contained in:
parent
32a9e35a6a
commit
660f02f5a6
@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2005-2012 Laurent Destailleur <eldy@users.sourceforge.net>
|
/* Copyright (C) 2005-2012 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com>
|
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com>
|
||||||
* Copyright (C) 2010-2011 Juanjo Menent <jmenent@2byte.es>
|
* Copyright (C) 2010-2011 Juanjo Menent <jmenent@2byte.es>
|
||||||
* Copyright (C) 2015-2017 Marcos García <marcosgdf@gmail.com>
|
* Copyright (C) 2015-2017 Marcos García <marcosgdf@gmail.com>
|
||||||
* Copyright (C) 2015-2017 Nicolas ZABOURI <info@inovea-conseil.com>
|
* Copyright (C) 2015-2017 Nicolas ZABOURI <info@inovea-conseil.com>
|
||||||
*
|
*
|
||||||
@ -36,54 +36,57 @@ require_once DOL_DOCUMENT_ROOT .'/core/class/html.form.class.php';
|
|||||||
class FormMail extends Form
|
class FormMail extends Form
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @var DoliDB Database handler.
|
* @var DoliDB Database handler.
|
||||||
*/
|
*/
|
||||||
public $db;
|
public $db;
|
||||||
|
|
||||||
var $withform; // 1=Include HTML form tag and show submit button, 0=Do not include form tag and submit button, -1=Do not include form tag but include submit button
|
public $withform; // 1=Include HTML form tag and show submit button, 0=Do not include form tag and submit button, -1=Do not include form tag but include submit button
|
||||||
|
|
||||||
var $fromname;
|
public $fromname;
|
||||||
var $frommail;
|
public $frommail;
|
||||||
var $replytoname;
|
public $replytoname;
|
||||||
var $replytomail;
|
public $replytomail;
|
||||||
var $toname;
|
public $toname;
|
||||||
var $tomail;
|
public $tomail;
|
||||||
var $trackid;
|
public $trackid;
|
||||||
|
|
||||||
|
public $withsubstit; // Show substitution array
|
||||||
|
public $withfrom;
|
||||||
|
|
||||||
var $withsubstit; // Show substitution array
|
|
||||||
var $withfrom;
|
|
||||||
/**
|
/**
|
||||||
* @var int
|
* @var int
|
||||||
* @deprecated Fill withto with array before calling method.
|
* @deprecated Fill withto with array before calling method.
|
||||||
* @see withto
|
* @see withto
|
||||||
*/
|
*/
|
||||||
public $withtosocid;
|
public $withtosocid;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var int|int[]
|
* @var int|int[]
|
||||||
*/
|
*/
|
||||||
public $withto; // Show recipient emails
|
public $withto; // Show recipient emails
|
||||||
var $withtofree; // Show free text for recipient emails
|
|
||||||
var $withtocc;
|
|
||||||
var $withtoccc;
|
|
||||||
var $withtopic;
|
|
||||||
var $withfile; // 0=No attaches files, 1=Show attached files, 2=Can add new attached files
|
|
||||||
var $withmaindocfile; // 1=Add a checkbox "Attach also main document" for mass actions (checked by default), -1=Add checkbox (not checked by default)
|
|
||||||
var $withbody;
|
|
||||||
|
|
||||||
var $withfromreadonly;
|
public $withtofree; // Show free text for recipient emails
|
||||||
var $withreplytoreadonly;
|
public $withtocc;
|
||||||
var $withtoreadonly;
|
public $withtoccc;
|
||||||
var $withtoccreadonly;
|
public $withtopic;
|
||||||
var $withtocccreadonly;
|
public $withfile; // 0=No attaches files, 1=Show attached files, 2=Can add new attached files
|
||||||
var $withtopicreadonly;
|
public $withmaindocfile; // 1=Add a checkbox "Attach also main document" for mass actions (checked by default), -1=Add checkbox (not checked by default)
|
||||||
var $withfilereadonly;
|
public $withbody;
|
||||||
var $withdeliveryreceipt;
|
|
||||||
var $withcancel;
|
|
||||||
var $withfckeditor;
|
|
||||||
|
|
||||||
var $substit=array();
|
public $withfromreadonly;
|
||||||
var $substit_lines=array();
|
public $withreplytoreadonly;
|
||||||
var $param=array();
|
public $withtoreadonly;
|
||||||
|
public $withtoccreadonly;
|
||||||
|
public $withtocccreadonly;
|
||||||
|
public $withtopicreadonly;
|
||||||
|
public $withfilereadonly;
|
||||||
|
public $withdeliveryreceipt;
|
||||||
|
public $withcancel;
|
||||||
|
public $withfckeditor;
|
||||||
|
|
||||||
|
public $substit=array();
|
||||||
|
public $substit_lines=array();
|
||||||
|
public $param=array();
|
||||||
|
|
||||||
public $withtouser=array();
|
public $withtouser=array();
|
||||||
public $withtoccuser=array();
|
public $withtoccuser=array();
|
||||||
@ -1395,12 +1398,12 @@ class FormMail extends Form
|
|||||||
class ModelMail
|
class ModelMail
|
||||||
{
|
{
|
||||||
public $id;
|
public $id;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var string proper name for given parameter
|
* @var string proper name for given parameter
|
||||||
*/
|
*/
|
||||||
public $label;
|
public $label;
|
||||||
|
|
||||||
public $topic;
|
public $topic;
|
||||||
public $content;
|
public $content;
|
||||||
public $content_lines;
|
public $content_lines;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user