Open Journal Systems  3.3.0
Section.inc.php
1 <?php
2 
17 import('lib.pkp.classes.context.PKPSection');
18 
19 class Section extends PKPSection {
20 
25  function getLocalizedAbbrev() {
26  return $this->getLocalizedData('abbrev');
27  }
28 
29 
30  //
31  // Get/set methods
32  //
33 
38  function getJournalId() {
39  return $this->getContextId();
40  }
41 
46  function setJournalId($journalId) {
47  return $this->setContextId($journalId);
48  }
49 
55  function getAbbrev($locale) {
56  return $this->getData('abbrev', $locale);
57  }
58 
64  function setAbbrev($abbrev, $locale) {
65  return $this->setData('abbrev', $abbrev, $locale);
66  }
67 
72  function getAbstractWordCount() {
73  return $this->getData('wordCount');
74  }
75 
80  function setAbstractWordCount($wordCount) {
81  return $this->setData('wordCount', $wordCount);
82  }
83 
88  function getMetaIndexed() {
89  return $this->getData('metaIndexed');
90  }
91 
96  function setMetaIndexed($metaIndexed) {
97  return $this->setData('metaIndexed', $metaIndexed);
98  }
99 
104  function getMetaReviewed() {
105  return $this->getData('metaReviewed');
106  }
107 
112  function setMetaReviewed($metaReviewed) {
113  return $this->setData('metaReviewed', $metaReviewed);
114  }
115 
121  return $this->getData('abstractsNotRequired');
122  }
123 
128  function setAbstractsNotRequired($abstractsNotRequired) {
129  return $this->setData('abstractsNotRequired', $abstractsNotRequired);
130  }
131 
137  return $this->getLocalizedData('identifyType');
138  }
139 
145  function getIdentifyType($locale) {
146  return $this->getData('identifyType', $locale);
147  }
148 
154  function setIdentifyType($identifyType, $locale) {
155  return $this->setData('identifyType', $identifyType, $locale);
156  }
157 
162  function getHideTitle() {
163  return $this->getData('hideTitle');
164  }
165 
170  function setHideTitle($hideTitle) {
171  return $this->setData('hideTitle', $hideTitle);
172  }
173 
178  function getHideAuthor() {
179  return $this->getData('hideAuthor');
180  }
181 
186  function setHideAuthor($hideAuthor) {
187  return $this->setData('hideAuthor', $hideAuthor);
188  }
189 
194  function getIsInactive() {
195  return $this->getData('isInactive');
196  }
197 
202  function setIsInactive($isInactive) {
203  $this->setData('isInactive', $isInactive);
204  }
205 
206 }
DataObject\getData
& getData($key, $locale=null)
Definition: DataObject.inc.php:100
DataObject\getLocalizedData
getLocalizedData($key, $preferredLocale=null)
Definition: DataObject.inc.php:71
Section\getJournalId
getJournalId()
Definition: Section.inc.php:38
Section\setAbbrev
setAbbrev($abbrev, $locale)
Definition: Section.inc.php:64
Section\getHideAuthor
getHideAuthor()
Definition: Section.inc.php:178
Section\setAbstractWordCount
setAbstractWordCount($wordCount)
Definition: Section.inc.php:80
Section\setMetaIndexed
setMetaIndexed($metaIndexed)
Definition: Section.inc.php:96
Section\setHideTitle
setHideTitle($hideTitle)
Definition: Section.inc.php:170
Section\getLocalizedAbbrev
getLocalizedAbbrev()
Definition: Section.inc.php:25
Section\setIdentifyType
setIdentifyType($identifyType, $locale)
Definition: Section.inc.php:154
Section\getHideTitle
getHideTitle()
Definition: Section.inc.php:162
Section\setAbstractsNotRequired
setAbstractsNotRequired($abstractsNotRequired)
Definition: Section.inc.php:128
Section\getAbstractsNotRequired
getAbstractsNotRequired()
Definition: Section.inc.php:120
Section\setMetaReviewed
setMetaReviewed($metaReviewed)
Definition: Section.inc.php:112
Section\setJournalId
setJournalId($journalId)
Definition: Section.inc.php:46
Section\getIsInactive
getIsInactive()
Definition: Section.inc.php:194
Section\setIsInactive
setIsInactive($isInactive)
Definition: Section.inc.php:202
Section\getLocalizedIdentifyType
getLocalizedIdentifyType()
Definition: Section.inc.php:136
Section\getIdentifyType
getIdentifyType($locale)
Definition: Section.inc.php:145
Section\getAbbrev
getAbbrev($locale)
Definition: Section.inc.php:55
PKPSection\setContextId
setContextId($contextId)
Definition: PKPSection.inc.php:30
Section\setHideAuthor
setHideAuthor($hideAuthor)
Definition: Section.inc.php:186
PKPSection\getContextId
getContextId()
Definition: PKPSection.inc.php:22
PKPSection
Describes basic section properties.
Definition: PKPSection.inc.php:16
Section\getMetaIndexed
getMetaIndexed()
Definition: Section.inc.php:88
Section
Describes basic section properties.
Definition: Section.inc.php:19
Section\getMetaReviewed
getMetaReviewed()
Definition: Section.inc.php:104
DataObject\setData
setData($key, $value, $locale=null)
Definition: DataObject.inc.php:132
Section\getAbstractWordCount
getAbstractWordCount()
Definition: Section.inc.php:72