00001 <?php
00002
00016 class FooterLink extends DataObject {
00020 function FooterLink() {
00021 parent::DataObject();
00022 }
00023
00028 function getPressId() {
00029 return $this->getData('pressId');
00030 }
00031
00036 function setPressId($pressId) {
00037 return $this->setData('pressId', $pressId);
00038 }
00039
00044 function getCategoryId() {
00045 return $this->getData('footerCategoryId');
00046 }
00047
00052 function setCategoryId($footerCategoryId) {
00053 return $this->setData('footerCategoryId', $footerCategoryId);
00054 }
00055
00060 function getUrl() {
00061 return $this->getData('url');
00062 }
00063
00068 function setUrl($url) {
00069 return $this->setData('url', $url);
00070 }
00071
00076 function getLocalizedTitle() {
00077 return $this->getLocalizedData('title');
00078 }
00079
00085 function getTitle($locale) {
00086 return $this->getData('title', $locale);
00087 }
00088
00094 function setTitle($title, $locale) {
00095 return $this->setData('title', $title, $locale);
00096 }
00097 }
00098
00099 ?>