File Manager
Upload
Current Directory: /home/lartcid/public_html/journal.lartc.id
[Back]
..
[Open]
Hapus
Rename
.htaccess
[Edit]
Hapus
Rename
.well-known
[Open]
Hapus
Rename
README.md
[Edit]
Hapus
Rename
api
[Open]
Hapus
Rename
cache
[Open]
Hapus
Rename
cgi-bin
[Open]
Hapus
Rename
classes
[Open]
Hapus
Rename
config.TEMPLATE.inc.php
[Edit]
Hapus
Rename
config.inc.php
[Edit]
Hapus
Rename
controllers
[Open]
Hapus
Rename
cypress.json
[Edit]
Hapus
Rename
dbscripts
[Open]
Hapus
Rename
docs
[Open]
Hapus
Rename
error_log
[Edit]
Hapus
Rename
favicon.ico
[Edit]
Hapus
Rename
index.php
[Edit]
Hapus
Rename
js
[Open]
Hapus
Rename
lib
[Open]
Hapus
Rename
locale
[Open]
Hapus
Rename
mini.php
[Edit]
Hapus
Rename
pages
[Open]
Hapus
Rename
php.ini
[Edit]
Hapus
Rename
plugins
[Open]
Hapus
Rename
public
[Open]
Hapus
Rename
registry
[Open]
Hapus
Rename
scheduledTaskLogs
[Open]
Hapus
Rename
schemas
[Open]
Hapus
Rename
styles
[Open]
Hapus
Rename
templates
[Open]
Hapus
Rename
tools
[Open]
Hapus
Rename
Edit File
<?php /** * @defgroup reviewForm Review Form * Implements review forms, which are forms that can be created and customized * by the manager and presented to the reviewer in order to assess submissions. */ /** * @file classes/reviewForm/ReviewForm.inc.php * * Copyright (c) 2014-2021 Simon Fraser University * Copyright (c) 2000-2021 John Willinsky * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @class ReviewForm * @ingroup reviewForm * @see ReviewerFormDAO * * @brief Basic class describing a review form. * */ class ReviewForm extends DataObject { /** * Get localized title. * @return string */ function getLocalizedTitle() { return $this->getLocalizedData('title'); } /** * Get localized description. * @return string */ function getLocalizedDescription() { return $this->getLocalizedData('description'); } // // Get/set methods // /** * Get the number of completed reviews for this review form. * @return int */ function getCompleteCount() { return $this->getData('completeCount'); } /** * Set the number of complete reviews for this review form. * @param $completeCount int */ function setCompleteCount($completeCount) { $this->setData('completeCount', $completeCount); } /** * Get the number of incomplete reviews for this review form. * @return int */ function getIncompleteCount() { return $this->getData('incompleteCount'); } /** * Set the number of incomplete reviews for this review form. * @param $incompleteCount int */ function setIncompleteCount($incompleteCount) { $this->setData('incompleteCount', $incompleteCount); } /** * Get the associated type. * @return int */ function getAssocType() { return $this->getData('assocType'); } /** * Set the associated type. * @param $assocType int */ function setAssocType($assocType) { $this->setData('assocType', $assocType); } /** * Get the Id of the associated type. * @return int */ function getAssocId() { return $this->getData('assocId'); } /** * Set the Id of the associated type. * @param $assocId int */ function setAssocId($assocId) { $this->setData('assocId', $assocId); } /** * Get sequence of review form. * @return float */ function getSequence() { return $this->getData('sequence'); } /** * Set sequence of review form. * @param $sequence float */ function setSequence($sequence) { $this->setData('sequence', $sequence); } /** * Get active flag * @return int */ function getActive() { return $this->getData('active'); } /** * Set active flag * @param $active int */ function setActive($active) { $this->setData('active', $active); } /** * Get title. * @param $locale string * @return string */ function getTitle($locale) { return $this->getData('title', $locale); } /** * Set title. * @param $title string * @param $locale string */ function setTitle($title, $locale) { $this->setData('title', $title, $locale); } /** * Get description. * @param $locale string * @return string */ function getDescription($locale) { return $this->getData('description', $locale); } /** * Set description. * @param $description string * @param $locale string */ function setDescription($description, $locale) { $this->setData('description', $description, $locale); } }
Simpan