|
Open Journal Systems
3.3.0
|
Public Member Functions | |
| __construct ($parentPlugin) | |
| deleteByFileId ($fileId) | |
| getInsertId () | |
| getMarkupJobInfo ($jobId) | |
| getMarkupJobInfobyFileId ($fileId) | |
| insertMarkupJobInfo ($markupJobInfo) | |
| updateMarkupJobInfo ($markupJobInfo) | |
Public Member Functions inherited from DAO | |
| __construct ($dataSource=null, $callHooks=true) | |
| concat () | |
| convertFromDB ($value, $type) | |
| convertToDB ($value, &$type) | |
| dateFromDB ($d) | |
| datetimeFromDB ($dt) | |
| datetimeToDB ($dt) | |
| dateToDB ($d) | |
| flushCache () | |
| formatDateToDB ($date, $defaultNumWeeks=null, $acceptPastDate=true) | |
| getAdditionalFieldNames () | |
| getAffectedRows () | |
| getDataObjectSettings ($tableName, $idFieldName, $idFieldValue, $dataObject) | |
| getDataSource () | |
| getDirectionMapping ($direction) | |
| getDriver () | |
| getLocaleFieldNames () | |
| getType ($value) | |
| handleError ($dataSource, $sql) | |
| nullOrInt ($value) | |
| replace ($table, $arrFields, $keyCols) | |
| & | retrieve ($sql, $params=false, $callHooks=true) |
| & | retrieveCached ($sql, $params=false, $secsToCache=3600, $callHooks=true) |
| & | retrieveLimit ($sql, $params=false, $numRows=false, $offset=false, $callHooks=true) |
| & | retrieveRange ($sql, $params=false, $dbResultRange=null, $callHooks=true) |
| setCacheDir () | |
| setDataSource ($dataSource) | |
| update ($sql, $params=false, $callHooks=true, $dieOnError=true) | |
| updateDataObjectSettings ($tableName, $dataObject, $idArray) | |
Protected Member Functions | |
| returnMarkupJobInfoFromRow ($row) | |
Protected Member Functions inherited from DAO | |
| _getInsertId ($table='', $id='') | |
Protected Attributes | |
| $_plugin = null | |
Additional Inherited Members | |
Static Public Member Functions inherited from DAO | |
| static | getDataChangedEvent ($elementId=null, $parentElementId=null, $content='') |
Data Fields inherited from DAO | |
| $_dataSource | |
operations for managing MarkupJobInfo objects
Definition at line 19 of file MarkupJobInfoDAO.inc.php.
| MarkupJobInfoDAO::__construct | ( | $parentPlugin | ) |
Definition at line 29 of file MarkupJobInfoDAO.inc.php.
| MarkupJobInfoDAO::deleteByFileId | ( | $fileId | ) |
Delete a markup job info entry
| int | $fileId |
Definition at line 158 of file MarkupJobInfoDAO.inc.php.
References DAO\update().
| MarkupJobInfoDAO::getInsertId | ( | ) |
Get the ID of the last inserted job info.
Definition at line 124 of file MarkupJobInfoDAO.inc.php.
References DAO\_getInsertId().
Referenced by insertMarkupJobInfo().
| MarkupJobInfoDAO::getMarkupJobInfo | ( | $jobId | ) |
Retrieve a MarkupJobInfo by ID.
| $jobId | string |
Definition at line 57 of file MarkupJobInfoDAO.inc.php.
References DAO\retrieve(), and returnMarkupJobInfoFromRow().
| MarkupJobInfoDAO::getMarkupJobInfobyFileId | ( | $fileId | ) |
Retrieve a MarkupJobInfo by file ID.
| $fileId | string |
Definition at line 75 of file MarkupJobInfoDAO.inc.php.
References DAO\retrieve(), and returnMarkupJobInfoFromRow().
| MarkupJobInfoDAO::insertMarkupJobInfo | ( | $markupJobInfo | ) |
Insert a new markup job info.
| $markupJobInfo | MarkupJobInfo |
Definition at line 93 of file MarkupJobInfoDAO.inc.php.
References getInsertId(), and DAO\update().
|
protected |
Internal function to return MarkupJobInfo object from a row.
| $row | array |
Definition at line 39 of file MarkupJobInfoDAO.inc.php.
Referenced by getMarkupJobInfo(), and getMarkupJobInfobyFileId().
| MarkupJobInfoDAO::updateMarkupJobInfo | ( | $markupJobInfo | ) |
Update a markup job info.
| $markupJobInfo | MarkupJobInfo |
Definition at line 133 of file MarkupJobInfoDAO.inc.php.
References DAO\update().
|
protected |
MarkupPlugin Reference to markup plugin
Definition at line 24 of file MarkupJobInfoDAO.inc.php.