TYPO3  7.6
about/Classes/Domain/Model/Extension.php
Go to the documentation of this file.
1 <?php
2 namespace TYPO3\CMS\About\Domain\Model;
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
23 {
27  protected $author = '';
28 
32  protected $authorEmail = '';
33 
37  protected $key = '';
38 
42  protected $title = '';
43 
47  public function setAuthor($author)
48  {
49  $this->author = $author;
50  }
51 
55  public function getAuthor()
56  {
57  return $this->author;
58  }
59 
63  public function setAuthorEmail($authorEmail)
64  {
65  $this->authorEmail = $authorEmail;
66  }
67 
71  public function getAuthorEmail()
72  {
73  return $this->authorEmail;
74  }
75 
79  public function setKey($key)
80  {
81  $this->key = $key;
82  }
83 
87  public function getKey()
88  {
89  return $this->key;
90  }
91 
95  public function setTitle($title)
96  {
97  $this->title = $title;
98  }
99 
103  public function getTitle()
104  {
105  return $this->title;
106  }
107 }