TYPO3 CMS  TYPO3_6-2
Content.php
Go to the documentation of this file.
1 <?php
3 
22 class Content {
23 
29  protected $uid = 0;
30 
36  protected $pageId = 0;
37 
43  protected $typoscript = array();
44 
51  public function setUid($uid) {
52  $this->uid = (int)$uid;
53  }
54 
60  public function getUid() {
61  return $this->uid;
62  }
63 
70  public function setPageId($pageId) {
71  $this->pageId = (int)$pageId;
72  }
73 
79  public function getPageId() {
80  return $this->pageId;
81  }
82 
89  public function setTyposcript(array $typoscript) {
90  $this->typoscript = (array) $typoscript;
91  }
92 
98  public function getTyposcript() {
99  return $this->typoscript;
100  }
101 
102 }
setTyposcript(array $typoscript)
Definition: Content.php:89