本文整理匯總了PHP中Submission::Submission方法的典型用法代碼示例。如果您正苦於以下問題:PHP Submission::Submission方法的具體用法?PHP Submission::Submission怎麽用?PHP Submission::Submission使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Submission
的用法示例。
在下文中一共展示了Submission::Submission方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Article
/**
* Constructor.
*/
function Article()
{
parent::Submission();
$this->articleTexts = array();
$this->removedArticleTexts = array();
$this->articleSecIds = array();
$this->removedArticleSecIds = array();
$this->articlePurposes = array();
$this->removedArticlePurposes = array();
$this->articleOutcomes = array();
$this->removedArticleOutcomes = array();
$this->articleDrugs = array();
$this->removedArticleDrugs = array();
$this->articleSites = array();
$this->removedArticleSites = array();
$this->articleFundingSources = array();
$this->removedArticleFundingSources = array();
$this->articleSecondarySponsors = array();
$this->removedArticleSecondarySponsors = array();
$this->articleCROs = array();
$this->removedArticleCROs = array();
}
示例2: Article
/**
* Constructor.
*/
function Article()
{
parent::Submission();
}
示例3: Monograph
/**
* get monograph id
* @return int
* Constructor.
*/
function Monograph()
{
parent::Submission();
}
示例4: Article
/**
* Constructor.
*/
function Article()
{
// Switch on meta-data adapter support.
$this->setHasLoadableAdapters(true);
parent::Submission();
}
示例5: Paper
/**
* Constructor.
*/
function Paper()
{
parent::Submission();
}