00001 <?php 00002 00020 // $Id: ProofreaderSubmission.inc.php,v 1.17 2008/07/01 01:16:11 asmecher Exp $ 00021 00022 00023 import('article.Article'); 00024 00025 class ProofreaderSubmission extends Article { 00026 00030 function ProofreaderSubmission() { 00031 parent::Article(); 00032 } 00033 00034 // 00035 // Get/set methods 00036 // 00037 00042 function &getLayoutAssignment() { 00043 $layoutAssignment = &$this->getData('layoutAssignment'); 00044 return $layoutAssignment; 00045 } 00046 00051 function setLayoutAssignment($layoutAssignment) { 00052 return $this->setData('layoutAssignment', $layoutAssignment); 00053 } 00054 00059 function getMostRecentLayoutComment() { 00060 return $this->getData('mostRecentLayoutComment'); 00061 } 00062 00067 function setMostRecentLayoutComment($mostRecentLayoutComment) { 00068 return $this->setData('mostRecentLayoutComment', $mostRecentLayoutComment); 00069 } 00070 00075 function &getSuppFiles() { 00076 $returner =& $this->getData('suppFiles'); 00077 return $returner; 00078 } 00079 00084 function setSuppFiles($suppFiles) { 00085 return $this->setData('suppFiles', $suppFiles); 00086 } 00087 00088 00093 function &getGalleys() { 00094 $galleys = &$this->getData('galleys'); 00095 return $galleys; 00096 } 00097 00102 function setGalleys(&$galleys) { 00103 return $this->setData('galleys', $galleys); 00104 } 00105 00110 function getMostRecentProofreadComment() { 00111 return $this->getData('mostRecentProofreadComment'); 00112 } 00113 00118 function setMostRecentProofreadComment($mostRecentProofreadComment) { 00119 return $this->setData('mostRecentProofreadComment', $mostRecentProofreadComment); 00120 } 00121 00126 function &getProofAssignment() { 00127 $proofAssignment = &$this->getData('proofAssignment'); 00128 return $proofAssignment; 00129 } 00130 00135 function setProofAssignment($proofAssignment) { 00136 return $this->setData('proofAssignment', $proofAssignment); 00137 } 00138 00143 function &getEditAssignments() { 00144 $editAssignments = &$this->getData('editAssignments'); 00145 return $editAssignments; 00146 } 00147 00152 function setEditAssignments($editAssignments) { 00153 return $this->setData('editAssignments', $editAssignments); 00154 } 00155 } 00156 00157 ?>
1.5.6