22 lines
519 B
PHP
22 lines
519 B
PHP
<?php
|
|
|
|
/**
|
|
* @defgroup plugins_blocks_makeSubmission Make a Submission block plugin
|
|
*/
|
|
|
|
/**
|
|
* @file plugins/blocks/makeSubmission/index.php
|
|
*
|
|
* Copyright (c) 2014-2020 Simon Fraser University
|
|
* Copyright (c) 2003-2020 John Willinsky
|
|
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
|
|
*
|
|
* @ingroup plugins_blocks_makeSubmission
|
|
* @brief Wrapper for "Make a Submission" block plugin.
|
|
*
|
|
*/
|
|
|
|
require_once('MakeSubmissionBlockPlugin.inc.php');
|
|
|
|
return new MakeSubmissionBlockPlugin();
|