forked from sulu/SuluCommunityBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added additional receivers for sending notification as CC or BCC (sul…
- Loading branch information
1 parent
7b0626e
commit 1f5c34e
Showing
29 changed files
with
919 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
<?php | ||
|
||
namespace Sulu\Bundle\FormBundle\Entity; | ||
|
||
class FormTranslationReceiver | ||
{ | ||
/** | ||
* @var int | ||
*/ | ||
private $id; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
private $type; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
private $email; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
private $name; | ||
|
||
/** | ||
* @var FormTranslation | ||
*/ | ||
private $formTranslation; | ||
|
||
/** | ||
* Returns id. | ||
* | ||
* @return int | ||
*/ | ||
public function getId() | ||
{ | ||
return $this->id; | ||
} | ||
|
||
/** | ||
* Sets id. | ||
* | ||
* @param int $id | ||
* | ||
* @return FormTranslationReceiver | ||
*/ | ||
public function setId($id) | ||
{ | ||
$this->id = $id; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* Returns type. | ||
* | ||
* @return string | ||
*/ | ||
public function getType() | ||
{ | ||
return $this->type; | ||
} | ||
|
||
/** | ||
* Sets type. | ||
* | ||
* @param string $type | ||
* | ||
* @return FormTranslationReceiver | ||
*/ | ||
public function setType($type) | ||
{ | ||
$this->type = $type; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* Returns email. | ||
* | ||
* @return string | ||
*/ | ||
public function getEmail() | ||
{ | ||
return $this->email; | ||
} | ||
|
||
/** | ||
* Sets email. | ||
* | ||
* @param string $email | ||
* | ||
* @return FormTranslationReceiver | ||
*/ | ||
public function setEmail($email) | ||
{ | ||
$this->email = $email; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* Returns name. | ||
* | ||
* @return string | ||
*/ | ||
public function getName() | ||
{ | ||
return $this->name; | ||
} | ||
|
||
/** | ||
* Sets name. | ||
* | ||
* @param string $name | ||
* | ||
* @return FormTranslationReceiver | ||
*/ | ||
public function setName($name) | ||
{ | ||
$this->name = $name; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* Returns formTranslation. | ||
* | ||
* @return FormTranslation | ||
*/ | ||
public function getFormTranslation() | ||
{ | ||
return $this->formTranslation; | ||
} | ||
|
||
/** | ||
* Sets formTranslation. | ||
* | ||
* @param FormTranslation $formTranslation | ||
* | ||
* @return FormTranslationReceiver | ||
*/ | ||
public function setFormTranslation($formTranslation) | ||
{ | ||
$this->formTranslation = $formTranslation; | ||
|
||
return $this; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.