本文整理匯總了PHP中ProofreaderAction::proofreaderProofreadingUnderway方法的典型用法代碼示例。如果您正苦於以下問題:PHP ProofreaderAction::proofreaderProofreadingUnderway方法的具體用法?PHP ProofreaderAction::proofreaderProofreadingUnderway怎麽用?PHP ProofreaderAction::proofreaderProofreadingUnderway使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ProofreaderAction
的用法示例。
在下文中一共展示了ProofreaderAction::proofreaderProofreadingUnderway方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: submission
/**
* Submission - Proofreading view
*/
function submission($args)
{
$articleId = isset($args[0]) ? (int) $args[0] : 0;
list($journal, $submission) = SubmissionProofreadHandler::validate($articleId);
parent::setupTemplate(true, $articleId);
$useProofreaders = $journal->getSetting('useProofreaders');
$authorDao =& DAORegistry::getDAO('AuthorDAO');
$authors = $authorDao->getAuthorsByArticle($articleId);
ProofreaderAction::proofreaderProofreadingUnderway($submission);
$useLayoutEditors = $journal->getSetting('useLayoutEditors');
$templateMgr =& TemplateManager::getManager();
$templateMgr->assign('useProofreaders', $useProofreaders);
$templateMgr->assign_by_ref('authors', $authors);
$templateMgr->assign_by_ref('submission', $submission);
$templateMgr->assign_by_ref('proofAssignment', $submission->getProofAssignment());
$templateMgr->assign('useLayoutEditors', $useLayoutEditors);
$templateMgr->assign('helpTopicId', 'editorial.proofreadersRole.proofreading');
$publishedArticleDao =& DAORegistry::getDAO('PublishedArticleDAO');
$publishedArticle =& $publishedArticleDao->getPublishedArticleByArticleId($submission->getArticleId());
if ($publishedArticle) {
$issueDao =& DAORegistry::getDAO('IssueDAO');
$issue =& $issueDao->getIssueById($publishedArticle->getIssueId());
$templateMgr->assign_by_ref('publishedArticle', $publishedArticle);
$templateMgr->assign_by_ref('issue', $issue);
}
$templateMgr->display('proofreader/submission.tpl');
}