TYPO3 CMS  TYPO3_6-2
Extension.php
Go to the documentation of this file.
1 <?php
3 
23 
27  protected $author = '';
28 
32  protected $authorEmail = '';
33 
37  protected $key = '';
38 
42  protected $title = '';
43 
47  public function setAuthor($author) {
48  $this->author = $author;
49  }
50 
54  public function getAuthor() {
55  return $this->author;
56  }
57 
61  public function setAuthorEmail($authorEmail) {
62  $this->authorEmail = $authorEmail;
63  }
64 
68  public function getAuthorEmail() {
69  return $this->authorEmail;
70  }
71 
75  public function setKey($key) {
76  $this->key = $key;
77  }
78 
82  public function getKey() {
83  return $this->key;
84  }
85 
89  public function setTitle($title) {
90  $this->title = $title;
91  }
92 
96  public function getTitle() {
97  return $this->title;
98  }
99 
100 }